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