barker/bookie/src/app/sales/tables-dialog/tables-dialog.component.spec.ts

27 lines
696 B
TypeScript
Raw Normal View History

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>;
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();
});
});