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