9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { expect, tap } from '@push.rocks/tapbundle';
|
|
import * as csvparser from '../ts/index';
|
|
|
|
tap.test('first test', async () => {
|
|
console.log(csvparser.standardExport);
|
|
});
|
|
|
|
tap.start();
|