You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importWSfrom'jest-websocket-mock';importWebSocketfrom'ws';test('example test with jest-websocket-mock',async()=>{constserver=newWS('ws://localhost:1234');constclient=newWebSocket('ws://localhost:1234');awaitserver.connected;client.send('hello');awaitexpect(server).toReceiveMessage('hello');expect(server).toHaveReceivedMessages(['hello']);},25000);
And I get the following error
Please could you suggest how can I resolve this.
The text was updated successfully, but these errors were encountered:
I am running the following test in NodeJS.
And I get the following error
Please could you suggest how can I resolve this.
The text was updated successfully, but these errors were encountered: