9 lines
244 B
TypeScript
Raw Normal View History

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