barker/bookie/src/app/tables/table.service.spec.ts

16 lines
364 B
TypeScript

import {inject, TestBed} from '@angular/core/testing';
import {TableService} from './table.service';
describe('TableService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [TableService]
});
});
it('should be created', inject([TableService], (service: TableService) => {
expect(service).toBeTruthy();
}));
});