24 lines
624 B
TypeScript
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();
|
|
});
|
|
});
|