11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import * as typedsocket from '../ts/index';
|
|
|
|
let testTypedSocket: typedsocket.TypedSocket;
|
|
|
|
tap.test('first test', async () => {
|
|
testTypedSocket = new typedsocket.TypedSocket();
|
|
});
|
|
|
|
tap.start();
|