Damian Kaczmarek
Damian Kaczmarek
I have a workaround: ```js function wrapTests(wrapper) { var originalIt = global.it; var originalDescribe = global.describe; global.describe = function() { global.it = originalIt; global.describe = originalDescribe; return originalDescribe.apply(this, arguments); };...
Actually I improved that solution and published it in an npm package: https://github.com/Rush/mocha-finalize-each Below supports all types of tests: sync, async and promises. It unifies them to use promises so...
@j-funk correct. Well, I actually added `finalizeEach` which you should instead of `afterEach`
@jaredsm can you submit a full example which I can test?
Is there a workaround for this issue? Is it an issue with UMD output only?
Btw. I signed CLA. You can re-run your CI.
Thanks! :) I would appreciate if it could be released in the nearby future.
Any updates on this one? :)
Thank you for addressing the issue. I'll make sure to go back to using watchtower after it's released!
Any updates on this PR?