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
As the Jasmine docs mention, calling pending('<your reason here>') in a spec causes it not to run.
pending('<your reason here>')
The reason is being sent to html.jasmine.reporter.js but never printed to the screen.
The fix would be simple. Like the following:
Around line 203:
var description = resultNode.result.description; var pendingReason = resultNode.result.pendingReason; var fullDescription = pendingReason ? description + ' (' + pendingReason + ')' : description;
Then on what was line 206, just replace resultNode.result.description with fullDescription.
resultNode.result.description
fullDescription
Would you like to do this? Or would you like me to create a pull request? Or none of the above?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As the Jasmine docs mention, calling
pending('<your reason here>')
in a spec causes it not to run.The reason is being sent to html.jasmine.reporter.js but never printed to the screen.
The fix would be simple. Like the following:
Around line 203:
Then on what was line 206, just replace
resultNode.result.description
withfullDescription
.Would you like to do this? Or would you like me to create a pull request? Or none of the above?
The text was updated successfully, but these errors were encountered: