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