Skip to content
New issue

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

It mentions case name from previous suite if the before hook fails #2006

Closed
stonelgh opened this issue Dec 15, 2015 · 0 comments
Closed

It mentions case name from previous suite if the before hook fails #2006

stonelgh opened this issue Dec 15, 2015 · 0 comments

Comments

@stonelgh
Copy link

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".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant