From 1bd39d07552fefaca61f3401d0b2a119c46a5d9b Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Mon, 12 Aug 2019 22:45:58 +0200 Subject: [PATCH] fix(core): update --- test/common/test.ts | 1 + test/test.ts | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 test/common/test.ts 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