barker/bookie/src/app/tables/table-detail/table-detail.component.spec.ts

26 lines
661 B
TypeScript

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