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