barker/bookie/src/app/section-printers/section-printer.service.spe...

16 lines
419 B
TypeScript

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