smartlog-receiver/test/test.ts
2018-10-31 17:42:18 +01:00

11 lines
268 B
TypeScript

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();
})
tap.start();