fixed missing done() that cuased the suite to timeout

This commit is contained in:
Arnout Kazemier
2011-07-24 11:27:43 +02:00
parent 3b2316e0d8
commit 5c50c4844f

View File

@@ -534,6 +534,7 @@ module.exports = {
done();
});
},
'no duplicate room members': function(done) {
var port = ++ports
, io = sio.listen(port);
@@ -569,5 +570,6 @@ module.exports = {
io.rooms["bar"].length.should.equal(2);
io.server.close();
done();
}
};