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