19 lines
402 B
TypeScript
19 lines
402 B
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import * as smartproxy from '../ts/index';
|
|
|
|
let testProxy: smartproxy.SmartProxy;
|
|
|
|
tap.test('first test', async () => {
|
|
testProxy = new smartproxy.SmartProxy();
|
|
});
|
|
|
|
tap.test('should start the testproxy', async () => {
|
|
await testProxy.start();
|
|
});
|
|
|
|
tap.test('should close the testproxy', async () => {
|
|
await testProxy.stop();
|
|
});
|
|
|
|
tap.start();
|