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