This commit is contained in:
2025-12-19 01:08:09 +01:00
parent 0d33fa55a7
commit cee92030ad
13 changed files with 349 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
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();
});
});