-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: upgrade to React v19 #2615
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2615 +/- ##
==========================================
- Coverage 81.12% 81.02% -0.11%
==========================================
Files 448 448
Lines 9464 9468 +4
Branches 2312 2312
==========================================
- Hits 7678 7671 -7
- Misses 1423 1427 +4
- Partials 363 370 +7 ☔ View full report in Codecov by Sentry. |
import '@testing-library/jest-dom'; | ||
import renderer from 'react-test-renderer'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
react-test-renderer
has been deprecated. Therefore many snapshots had to be changed.
Size Change: +450 B (+0.04%) Total Size: 1.19 MB
ℹ️ View Unchanged
|
@@ -1,4 +1,4 @@ | |||
import { act, renderHook } from '@testing-library/react-hooks'; | |||
import { act, renderHook } from '@testing-library/react'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@testing-library/react-hooks does not seem to be continued - it has not been updated to be compatible with React v19.
Tested locally with app running on
Fixes React-253