I have this kind of a mocha test:
describe \'sabah\', → beforeEach → @sabahStrategy = _.filter(@strats, { name: \'sabah2\' })[0] .str
For anyone with same issue: You should make sure that done() gets called even after an assert fails, like in the following code:
done()
try { // your asserts go here done(); } catch (e) { done(e); }