smartbucket/test/test.ts

9 lines
173 B
TypeScript
Raw Normal View History

2019-07-07 08:48:24 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2018-09-14 16:07:20 +00:00
import * as smartbucket from '../ts/index';
2018-03-30 17:42:14 +00:00
tap.test('first test', async () => {
2019-07-07 08:48:24 +00:00
console.log('hi');
2018-09-14 16:07:20 +00:00
});
2018-03-30 17:42:14 +00:00
2018-09-14 16:07:20 +00:00
tap.start();