2019-08-10 08:51:40 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { TablesDialogComponent } from './tables-dialog.component';
|
|
|
|
|
|
|
|
describe('TablesDialogComponent', () => {
|
|
|
|
let component: TablesDialogComponent;
|
|
|
|
let fixture: ComponentFixture<TablesDialogComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-10-11 05:26:29 +00:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
});
|