10 lines
230 B
TypeScript
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();
|