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