3.6.0
afterEach()
and afterEach.always()
hooks can now determine whether the test passed. Thank you @bunysae for contributing this! 8f312c0:
test('passes', t => t.pass());
test.afterEach(t => {
if (t.passed) {
// Do something because the test passed
} else {
// Do something because the test failed
}
});
@mbiesiad has diligently translated our documentation to Polish. Thank you @kekuu for reviewing.
Also thank you @timgates42 for fixing a typo in our documentation. ede4f32
See v3.5.0...v3.6.0 for all changes.