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(); | |
}); | |
}, |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HI, i've got similar code, but i could not get the same result as you. Could you give me advice about what i'm doing wrong?. The code is on https://gist.github.com/1325853. Running on expresso i've got the folloing result:
info - socket.io started
And it remains here, till i press control+C and I get the following:
^C
100% 1 tests
Thanks in advance.