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