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