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
Given the test script:
describe('good test', function() { it('should not blame me', function() { }); }); describe('bad test', function() { before('fail init', function() { throw new Error(); }); it('skipped'); });
It outputs:
good test ✓ should not blame me bad test 1) "before all" hook: fail init for "should not blame me"
It should not mention the case name "should not blame me".
The text was updated successfully, but these errors were encountered:
Remove reference to test before afterAll hook runs
dc97c1f
Fix mochajs#2006
5bb930f
No branches or pull requests
Given the test script:
It outputs:
It should not mention the case name "should not blame me".
The text was updated successfully, but these errors were encountered: