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