smartproxy/test/test.ts
2019-08-20 22:26:44 +02:00

10 lines
227 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();