beautyfiglet/test/test.ts

9 lines
186 B
TypeScript
Raw Normal View History

2018-03-05 00:26:26 +00:00
import { expect, tap } from 'tapbundle';
import * as beautyfiglet from '../ts/index';
2018-03-05 00:21:25 +00:00
tap.test('first test', async () => {
2018-03-05 00:26:26 +00:00
console.log(beautyfiglet.standardExport);
});
2018-03-05 00:21:25 +00:00
2018-03-05 00:26:26 +00:00
tap.start();