argos/dmp-admin/src/app/bootstrap/properties-editor/properties-editor.component...

26 lines
703 B
TypeScript

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