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

24 lines
624 B
TypeScript

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