smartping/test/test.ts

9 lines
192 B
TypeScript
Raw Normal View History

2022-10-20 06:24:20 +00:00
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
import * as smartping from '../ts/index.js';
2018-11-18 14:06:17 +00:00
tap.test('first test', async () => {
2022-10-20 06:24:20 +00:00
console.log(smartping);
});
2018-11-18 14:06:17 +00:00
2022-10-20 06:24:20 +00:00
tap.start();