Files
barker/bookie/src/app/product-sale-report/product-sale-report.service.spec.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

19 lines
460 B
TypeScript

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