smartlog-interfaces/test/test.ts

9 lines
261 B
TypeScript
Raw Normal View History

2024-06-06 14:48:19 +00:00
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
2022-10-26 13:18:09 +00:00
import * as commonlog from '../ts/index.js';
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();