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