diff --git a/test/common/test.ts b/test/common/test.ts new file mode 100644 index 0000000..ebe1ab4 --- /dev/null +++ b/test/common/test.ts @@ -0,0 +1 @@ +console.log('TODO'); \ No newline at end of file diff --git a/test/test.ts b/test/test.ts index 512a593..69fc3e9 100644 --- a/test/test.ts +++ b/test/test.ts @@ -80,7 +80,10 @@ tap.test('should be able to make a functionCall from client to server', async () }); tap.test('should be able to make a functionCall from server to client', async () => { - + const response = await testSmartsocketClient.serverCall('testFunction1', { + hi: 'hi there from client' + }); + console.log(response); }); // terminate