-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Regression after doesn't execute if tests skipped in beforeEach #2286
Labels
type: bug
a defect, confirmed by a maintainer
Comments
It doesn't happen if the Simplified case: after(function () { console.log('after outside suite') })
describe('suite', function () {
beforeEach(function () { this.skip() })
after(function () { console.log('after in suite') })
it('test', function () {})
}) |
dasilvacontin
added a commit
that referenced
this issue
May 29, 2016
boneskull
added a commit
that referenced
this issue
Nov 3, 2016
boneskull
added a commit
that referenced
this issue
Nov 3, 2016
boneskull
added a commit
that referenced
this issue
Nov 3, 2016
See PR #2571 |
@dasilvacontin Hey, we're discussing in #2571 what the right behavior is when you call |
boneskull
added a commit
that referenced
this issue
Dec 3, 2016
boneskull
added a commit
that referenced
this issue
Dec 3, 2016
This was referenced Sep 23, 2018
1 task
1 task
This was referenced Dec 23, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
will not output the
after in suite
since v2.5.0 due to PR #2081 (found viagit bisect
)reported by @blueice349, confirmed by myself
The text was updated successfully, but these errors were encountered: