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

26 lines
703 B
TypeScript
Raw Normal View History

2017-10-16 17:05:25 +02:00
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();
});
});