smartlog-interfaces/test/test.ts
2018-03-01 22:33:47 +01:00

9 lines
233 B
TypeScript

import { expect, tap } from 'tapbundle';
import * as commonlog from '../ts/index';
tap.test('first test', async () => {
console.log('Since this is an interface package, there is nothing to test dynamically :)');
});
tap.start();