We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In my spec helper, I have changed the default timeout to 10 seconds using:
jasmine.getEnv().defaultTimeoutInterval = 10 *1000
This works fine when run through the jasmine-node timeout. However, when I use the grunt plugin, it goes back to the standard 5 seconds default.
I am using node 0.10.29, grunt 0.4.5, jasmine-node 1.14.3, grunt-jasmine-node 0.2.1
The text was updated successfully, but these errors were encountered:
Same issue here. @christinedraper have you managed to resolve it?
Sorry, something went wrong.
No. I resorted to putting a longer timeout on specific tests, i.e.
it("should do something that takes a while", function(done) { request.get(.... }, function(error, response, body) { ... done(); }); }, request.longerTimeout);
Not ideal though.
No branches or pull requests
In my spec helper, I have changed the default timeout to 10 seconds using:
jasmine.getEnv().defaultTimeoutInterval = 10 *1000
This works fine when run through the jasmine-node timeout. However, when I use the grunt plugin, it goes back to the standard 5 seconds default.
I am using node 0.10.29, grunt 0.4.5, jasmine-node 1.14.3, grunt-jasmine-node 0.2.1
The text was updated successfully, but these errors were encountered: