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