-
Notifications
You must be signed in to change notification settings - Fork 49k
Description
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
When following @gaearon's example on how to suppress the error boundary logging in tests expecting errors, it appears to not be working in 16.8.6 (I'm not sure which versions after 16.4.3 is has worked for).
I had to make a change to the renderError
as it looks like the way codesandbox executes the script cause the event.error
to be hidden from the code (it just had an object with isTrusted: true
on it - google led me here so I changed it to just count the number of errors).
I also made a change to be able to use react-test-renderer
as well as react-dom
as I'm actually after a way to suppress the error using the test renderer for an issue raised in react-hooks-testing-library
.
In my sandbox, you will see the errors
The above error occurred in the component:
in Darth
in TestBoundaryReact will try to recreate this component tree from scratch using the error boundary you provided, TestBoundary.
and
The above error occurred in the component:
in ObiWan
in TestBoundaryReact will try to recreate this component tree from scratch using the error boundary you provided, TestBoundary.
get printed to the console, despite the event.preventDefault()
call.
The other main thing to note is that the react-test-renderer
test does not pass, which implies the error listener is not firing for it, which sort of makes sense to me as it's not using the DOM, so it's not erroring on the window, but my understanding of these things is somewhat limited.
What is the expected behavior?
Assuming the expectRenderError
, TestBoundary
and handleTopLevelError
code is sufficient to suppress the output as indicated in #11098, I would expect the react-dom
test to produce no output.
Assuming the same setup should also work for react-test-renderer
, I would also expect that test to have no output.
If either of these assumptions are wrong, how should one go about suppressing the output in these tests?
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?
react
: 16.8.6
react-dom
: 16.8.6
react-test-renderer
: 16.8.6