react-testing-library v10.0.0 Release Notes

Release Date: 2020-03-12 // about 4 years ago
  • 10.0.0 (2020-03-12)

    🔋 Features

    • ✅ Flush microtasks in cleanup (#519) (9fc8581)
    • ⚡️ update @testing-library/dom (435098c)

    💥 BREAKING CHANGES

    ⚡️ Update DOM Testing Library

    🚀 The latest version of DOM Testing Library has several breaking changes you will want to review the changelog of DOM Testing Library v7.0.0 to ensure you are unaffected.

    ⬇️ Drop Node 8

    🚀 Node 10 or greater is required. Node 8 is out of LTS (#576) (fccc2cf), closes #575

    ✂ remove deprecated cleanup-after-each.js

    ✅ This file which did nothing but log a warning to the console (#598) (7942f68)

    - import '@testing-library/react/cleanup-after-each'+ // nothing! Just remove it
    

    As a general reminder, you should NOT need to use cleanup at all as this is done automatically for you (unless you're using @testing-library/react/pure in which case you know what you're doing... keep using cleanup).