smartproxy/test/test.ts
2019-08-20 23:21:12 +02:00

10 lines
230 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as smartproxy from '../ts/index';
tap.test('first test', async () => {
const testProxy = new smartproxy.SmartProxy();
// await testProxy.start();
});
tap.start();