barker/bookie/src/app/sales/tables-dialog/tables-dialog.component.spe...

26 lines
671 B
TypeScript

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({
declarations: [ TablesDialogComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TablesDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});