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