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