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