10 lines
229 B
TypeScript
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();
|