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
I think the flowFinished should look like this:
var flowFinished = flow.execute(function() { try { fn.call(jasmine.getEnv().currentSpec, function(userError) { if (userError) { asyncFnDone.reject(new Error(userError)); } else { asyncFnDone.fulfill(); } }); } catch (ex) { asyncFnDone.reject(ex); } }, desc_);
So that it can reject exceptions thrown within the callback. This will correctly mark the current spec as failed but will continue.
The text was updated successfully, but these errors were encountered:
Added pull request #12
Sorry, something went wrong.
No branches or pull requests
I think the flowFinished should look like this:
So that it can reject exceptions thrown within the callback.
This will correctly mark the current spec as failed but will continue.
The text was updated successfully, but these errors were encountered: