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

24 lines
628 B
TypeScript

import {ComponentFixture, fakeAsync, TestBed} from '@angular/core/testing';
import {TableListComponent} from './table-list.component';
describe('TableListComponent', () => {
let component: TableListComponent;
let fixture: ComponentFixture<TableListComponent>;
beforeEach(fakeAsync(() => {
TestBed.configureTestingModule({
declarations: [TableListComponent]
})
.compileComponents();
fixture = TestBed.createComponent(TableListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should compile', () => {
expect(component).toBeTruthy();
});
});