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