import { ComponentFixture, TestBed } from '@angular/core/testing'; import { Skills } from './skills'; describe('Skills', () => { let component: Skills; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [Skills] }) .compileComponents(); fixture = TestBed.createComponent(Skills); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });