Files
ems-frontend/src/app/create-qualification/create-qualification.component.spec.ts
Phan Huy Tran 8f68203ae2 Create modal
2025-01-08 09:38:30 +01:00

24 lines
684 B
TypeScript

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