14 lines
420 B
TypeScript
14 lines
420 B
TypeScript
import {ProductSaleReportRoutingModule} from './product-sale-report-routing.module';
|
|
|
|
describe('ProductSaleReportRoutingModule', () => {
|
|
let productSaleReportRoutingModule: ProductSaleReportRoutingModule;
|
|
|
|
beforeEach(() => {
|
|
productSaleReportRoutingModule = new ProductSaleReportRoutingModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(productSaleReportRoutingModule).toBeTruthy();
|
|
});
|
|
});
|