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