-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
React.StrictMode
not working when child of wrapper
in React 19
#1388
Comments
This is intended React behavior: facebook/react#32315 (comment) You can use |
@eps1lon Would it be possible to add a |
Yep, that's what I would recommend anyway. Can you work on a PR? |
I can take a look at it |
Here it is: #1390 |
Fixed in #1390 |
@testing-library/react
version: 16.2.0Relevant code or config:
The assertion in the following snippets fails in React 19, but succeeds in React 18:
What you did:
Rendered
StrictMode
inWrapper
component that is passed do thewrapper
property of the options object in therender
function from React Testing Library.What happened:
Expected Strict Mode to be enabled, but it wasn't. This can be seen because in Strict Mode in React 18 and 19
useEffect
should be run twice, but in this case it was only run once.This issue only happens in React 19. In React 18 it works as expected.
Reproduction:
React 19 - tests fail
React 18 - tests pass
Problem description:
In React 19, when rendering
React.StrictMode
in a component provided towrapper
, Strict Mode isn't enabled.In React 18, however, Strict Mode is enabled.
Suggested solution:
In React 19, rendering
React.StrictMode
in a component provided towrapper
should enable Strict Mode.The text was updated successfully, but these errors were encountered: