-
Notifications
You must be signed in to change notification settings - Fork 47.3k
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
Adds React event component and React event target support to SSR renderer #15242
Adds React event component and React event target support to SSR renderer #15242
Conversation
ReactDOM: size: 0.0%, gzip: 0.0% Details of bundled changes.Comparing: fb6b508...841ca0f react-dom
Generated by 🚫 dangerJS |
@@ -5,7 +5,6 @@ | |||
* LICENSE file in the root directory of this source tree. | |||
* | |||
* @emails react-core | |||
* @jest-environment node |
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.
This existed from a copy and paste from a previous test file. We don't want it here as we want Jest to give the JSDOM for document
and using this setting removes JSDOM support for this test.
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.
Nit: Let's throw if not enabled.
Note: this is for an experimental event API that we're testing out internally at Facebook.
This PR adds support for server side rendering for the experimental event API along with tests. I also added some ReactDOM renderer tests to the same test file to be consistent and give more coverage.
#15036
#15112
#15150
#15168
#15179
#15228