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