Created
October 17, 2011 10:16
-
-
Save ppcano/1292336 to your computer and use it in GitHub Desktop.
Socket.io and Socket.io-client in Expresso Serial Tests will be hanged.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test: function( done ) { | |
var port = 8080, | |
io = require("socket.io").listen(port); | |
io.set('polling duration', .2); | |
var client = require("socket.io-client").connect( "http://localhost", { port: port }); | |
client.on('connect', function() { | |
client.disconnect(); | |
}); | |
client.on('disconnect', function() { | |
console.log(' client disconnect'); | |
client.socket.transport.websocket.finishClose(); | |
io.server.close(); | |
done(); | |
}); | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i answered this question here: http://stackoverflow.com/questions/5965733/how-does-one-properly-shutdown-socket-io-websocket-client
Also, it could be that you are running your tests with the proper arguments:
run serial tests ( normally, the convention is to use 'done' instead of 'beforeExit' with is the term for no-serial tests ),
-t TIMEOUT, with a timeout big enough in order the tests won't fail because timing-out.
--> expresso mytest -s -t 10000