ignacioiglesias
ignacioiglesias
Hey guys, just out of curiosity which versions of Node are you using?
Is that successor the `beforeExit` or `next` argument that is provided when using `--serial`?
Uhm, not sure if I understood… My thought was that I told expresso that my test had finished by calling that `beforeExit` or `next` argument; therefore, once expresso had ran...
Sorry for my late answer. I think that the problem was having to hit CTRL + C when testing in `--serial` mode. Even though I was calling `next()` when finished,...
Same problem here when testing with socket.io. I came up with a fix that looks just like the one from shivaken, however, it doesn't solve the problem because when `process.exit`...
Hey, thanks for your answer. Yes. My tests are taking the callback and calling it when the test is done; I'm using --serial because I'm testing a socket.io so the...
It wasn't clear to me why wrapping `process.exit` in a timeout or `process.nextTick` helped until I found [this answer](http://stackoverflow.com/questions/779379/why-does-settimeoutfn-0-sometimes-help/779785#779785) in stackoverflow. To answer your question about executing tests one by...
**@shivaken**: I think I didn't express myself correctly; Given the nature of my tests, I am **always** using `--serial`. Regarding your suggestion about the usage of `server = require('app').server`, it's...