Files
barker/bookie/src/app/sales/bill.service.spec.ts
Amritanshu 4513e8b263 Bills initially working just as proof of concept
ng linted
modifier categories list is better at displaying data sanely now
2019-07-11 12:17:41 +05:30

13 lines
323 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { BillService } from './bill.service';
describe('BillService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: BillService = TestBed.get(BillService);
expect(service).toBeTruthy();
});
});