argos/dmp-admin/src/app/dataset-profile-gui-editor/dataset-profile-gui-editor....

26 lines
751 B
TypeScript

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