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