smartlog-interfaces/test/test.ts
2022-03-07 20:26:59 +01:00

9 lines
257 B
TypeScript

import { expect, expectAsync, tap } from '@pushrocks/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();