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