import "jest-dom/extend-expect" is deprecated
A warning/error printed in the console
jest-dom has moved to @testing-library/jest-dom. Please uninstall jest-dom and install @testing-library/jest-dom instead, or use an older version of jest-dom. If you do upgrade to @testing-library/jest-dom, make sure to update your usage of jest-dom to use @testing-library/jest-dom/extend-expect rather than simply jest-dom/extend-expect. Learn more about this change here: https://github.com/testing-library/dom-testing-library/issues/260 Thanks! 
Solution
$> yarn remove jest-dom
$> yarn add @testing-library/jest-dom --dev
Recent Comments