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
This is a feature request: Report the first assertion failure in each test function, for each test function in a file. For example:
// foo.test.js var assert = require('assert'); exports.test1 = function () { assert.fail('test1 failure'); }; exports.test2 = function () { assert.fail('test2 failure'); };
If I run this with 'expresso foo.test.js', I only get one assertion failure message -
foo.test.js test1: AssertionError: "undefined" "test1 failure".
I would like to also see the second test failure, something like this:
foo.test.js test1: AssertionError: "undefined" "test1 failure". test2: AssertionError: "undefined" "test2 failure".
The text was updated successfully, but these errors were encountered:
Looks like someone has a fix for this in issue #156.
Sorry, something went wrong.
No branches or pull requests
This is a feature request: Report the first assertion failure in each test function, for each test function in a file. For example:
If I run this with 'expresso foo.test.js', I only get one assertion failure message -
I would like to also see the second test failure, something like this:
The text was updated successfully, but these errors were encountered: