portablefinance/test/test.ts

10 lines
229 B
TypeScript
Raw Normal View History

2019-05-23 15:37:13 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as finplusInterfaces from '../ts/index';
tap.test('first test', async () => {
2019-06-24 13:51:33 +00:00
let dummyCsvParser : finplusInterfaces.ICsvParser;
dummyCsvParser;
2019-05-23 15:37:13 +00:00
});
tap.start();