Files
cmc/support-portal-frontend/src/app/component/education/education.component.spec.ts
2025-09-23 19:41:25 +05:30

26 lines
647 B
TypeScript

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