smartlog-interfaces/test/test.ts

9 lines
244 B
TypeScript
Raw Normal View History

2018-10-31 12:49:12 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2018-03-01 21:33:47 +00:00
import * as commonlog from '../ts/index';
2018-02-07 23:12:25 +00:00
tap.test('first test', async () => {
2018-03-01 21:33:47 +00:00
console.log('Since this is an interface package, there is nothing to test dynamically :)');
});
2018-02-07 23:12:25 +00:00
2018-03-01 21:33:47 +00:00
tap.start();