smartlog-receiver/test/test.ts

11 lines
269 B
TypeScript
Raw Normal View History

2018-10-31 16:42:18 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartlogReceiver from '../ts/index';
let testReceiver: smartlogReceiver.SmartlogReceiver;
tap.test('first test', async () => {
testReceiver = new smartlogReceiver.SmartlogReceiver();
2018-10-31 16:45:51 +00:00
});
2018-10-31 16:42:18 +00:00
tap.start();