Files
smartproxy/test/test.ts

10 lines
230 B
TypeScript
Raw Normal View History

2019-08-20 17:50:17 +02:00
import { expect, tap } from '@pushrocks/tapbundle';
2019-08-20 18:42:52 +02:00
import * as smartproxy from '../ts/index';
2019-08-20 17:50:17 +02:00
tap.test('first test', async () => {
2019-08-20 22:26:44 +02:00
const testProxy = new smartproxy.SmartProxy();
2019-08-21 03:20:40 +02:00
// await testProxy.start();
2019-08-20 18:42:52 +02:00
});
2019-08-20 17:50:17 +02:00
2019-08-20 18:42:52 +02:00
tap.start();