PatrickJS / angular-websocket

:arrow_upper_left: The missing Angular WebSocket module for connecting client applications to servers by @AngularClass
https://angularclass.github.io/angular-websocket
MIT License
1.22k stars 194 forks source link

Cannot test onOpen function #104

Open millerf opened 7 years ago

millerf commented 7 years ago

Hi there,

Thanks a lot for this great great library.

I am doing a e2e test with Jasmine. And I cannot seem to fake a connection and have the websocket onOpen() event function called.

I am looking for the same kind of functions httpBackend provides, such as : $httpBackend.whenJSONP(url) .respond(responseSent)

Something like: $websocketBackend.expectConnect(url).and.connectWithMessage(msg) and $websocketBackend.fakeReceive(msg)

Would that be possible? I am happy to help if needed.

Thanks