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