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