2020-11-22 04:43:37 +00:00
|
|
|
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
2019-08-10 08:51:40 +00:00
|
|
|
|
|
|
|
import { TablesDialogComponent } from './tables-dialog.component';
|
|
|
|
|
|
|
|
describe('TablesDialogComponent', () => {
|
|
|
|
let component: TablesDialogComponent;
|
|
|
|
let fixture: ComponentFixture<TablesDialogComponent>;
|
|
|
|
|
2020-11-22 04:43:37 +00:00
|
|
|
beforeEach(
|
|
|
|
waitForAsync(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [TablesDialogComponent],
|
|
|
|
}).compileComponents();
|
|
|
|
}),
|
|
|
|
);
|
2019-08-10 08:51:40 +00:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(TablesDialogComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|