typedsocket/test/test.ts

11 lines
250 B
TypeScript
Raw Normal View History

2020-12-21 21:01:37 +00:00
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();