typedsocket/test/test.ts
2020-12-21 21:01:37 +00:00

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();