14 lines
347 B
TypeScript
14 lines
347 B
TypeScript
|
import {CashFlowRoutingModule} from './cash-flow-routing.module';
|
||
|
|
||
|
describe('CashFlowRoutingModule', () => {
|
||
|
let cashFlowRoutingModule: CashFlowRoutingModule;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
cashFlowRoutingModule = new CashFlowRoutingModule();
|
||
|
});
|
||
|
|
||
|
it('should create an instance', () => {
|
||
|
expect(cashFlowRoutingModule).toBeTruthy();
|
||
|
});
|
||
|
});
|