mocha: after() not called on error
describe 'Test', ->
after -> console.error 'cleanup is not called'
describe 'When I do something', ->
before -> throw new Error 'BAM' # and there is a problem
it -> assert.ok true
About this issue
- Original URL
- State: closed
- Created 12 years ago
- Comments: 44 (16 by maintainers)
well i had this discussion in another issue about trapping signals etc, cleanup in after hooks technically makes little to no sense, but in this case yeah we can definitely get around that
Found a case in which afterEach doesn’t run for mocha @ 5.2.0 if the async code is deeply nested and throws an error.
Repository here.