portablefinance/test/test.ts
2019-06-24 15:51:33 +02:00

10 lines
229 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as finplusInterfaces from '../ts/index';
tap.test('first test', async () => {
let dummyCsvParser : finplusInterfaces.ICsvParser;
dummyCsvParser;
});
tap.start();