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(); }, )); });