argos/dmp-admin/src/app/managers/datasetprofile-editor/datasetprofile-editor.compo...

26 lines
731 B
TypeScript

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