Files
ems-frontend/src/app/qualifications/qualifications.component.spec.ts
2024-12-18 13:23:01 +01:00

24 lines
648 B
TypeScript

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