fix(core): update

This commit is contained in:
2022-01-19 18:36:13 +01:00
parent 12d7310b90
commit 9435796333
7 changed files with 26 additions and 286 deletions

View File

@ -57,7 +57,6 @@ tap.test('should register a new Function', async () => {
funcName: 'testFunction2',
});
testSmartsocket.addSocketFunction(testSocketFunctionForServer);
console.log(testSmartsocket.socketFunctions);
});
tap.test('should start listening when .started is called', async () => {
@ -72,7 +71,6 @@ tap.test('should react to a new websocket connection from client', async () => {
alias: 'testClient1',
});
testSmartsocketClient.addSocketFunction(testSocketFunctionClient);
console.log(testSmartsocketClient.socketFunctions);
await testSmartsocketClient.connect();
});