smartlog-interfaces/test/test.ts
2024-06-06 16:48:19 +02:00

9 lines
261 B
TypeScript

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