smartlog-receiver/test/test.ts
2018-10-31 17:45:51 +01:00

11 lines
269 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();