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
This test fails with Uncaught TypeError: Cannot call method 'push' of undefined
The test disconnects a socket that is trying to connect to a namespace other than the default
it('should not crash while disconnecting socket', function(done){
var srv = http();
var sio = io(srv);
srv.listen(function(){
var socket = client(srv,'/ns');
sio.on('connection', function(socket){
socket.disconnect();
done();
});
});
});
The text was updated successfully, but these errors were encountered:
This test fails with Uncaught TypeError: Cannot call method 'push' of undefined
The test disconnects a socket that is trying to connect to a namespace other than the default
The text was updated successfully, but these errors were encountered: