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