-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suite.timeout() etc #599
Comments
Does it mean, different timeouts per |
yeah currently if you do something like: describe(..., function(){
beforeEach(function(){ this.timeout(5000) })
}) it applies to the beforeEach hook itself, not the following test-cases so we have no way to define a timeout for multiple test-cases right now |
Let me know if this PR solves the problem. If that is the case, for me to make the adequate modifications in the mocha's document. |
Eww more namespace collisions preventing me from attaching variables with certain names to the context :( |
You can still overwrite it without issues. On Tue, Oct 9, 2012 at 7:49 AM, Domenic Denicola
|
|
The text was updated successfully, but these errors were encountered: