14 lines
387 B
TypeScript
14 lines
387 B
TypeScript
|
import {ProductLedgerRoutingModule} from './product-ledger-routing.module';
|
||
|
|
||
|
describe('ProductLedgerRoutingModule', () => {
|
||
|
let productLedgerRoutingModule: ProductLedgerRoutingModule;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
productLedgerRoutingModule = new ProductLedgerRoutingModule();
|
||
|
});
|
||
|
|
||
|
it('should create an instance', () => {
|
||
|
expect(productLedgerRoutingModule).toBeTruthy();
|
||
|
});
|
||
|
});
|