cypress-websocket-testing
cypress-websocket-testing copied to clipboard
Question - Does the message with different type comes through?
Hi,
Thank you for writing up this library 🙏🏻.
We are using the Rails ActionCable so the message format is not something like { "type": "foo", "message": "bar" }
but { "command": 'foo', identifier: "{...}" }
in sending and ` { "type": "bar", identifier: "{...}" } in receiving. I have tried the library but I can only receive the messages in normal format.
Besides, is it possible to monitor the sending message?