Files
itc.webengineering/demo/src/app/student-form/student-form.spec.ts
2025-12-19 01:08:09 +01:00

24 lines
567 B
TypeScript

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