ava v3.6.0 Release Notes

Release Date: 2020-04-05 // about 4 years ago
  • โœ… 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.