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