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