smartjwt/test/test.ts

9 lines
189 B
TypeScript
Raw Normal View History

2019-02-22 23:48:01 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2019-02-22 23:50:21 +00:00
import * as smartjwt from '../ts/index';
2019-02-22 23:48:01 +00:00
tap.test('first test', async () => {
2019-02-22 23:50:21 +00:00
console.log(smartjwt.standardExport);
});
2019-02-22 23:48:01 +00:00
2019-02-22 23:50:21 +00:00
tap.start();