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