From 5d65cd8440697dd3d58975c6572f528043f81328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Spie=C3=9F?= Date: Thu, 11 May 2017 02:05:38 +0200 Subject: [PATCH] Remove injectReactDOMEventListener from ReactBrowserEventEmitter (#9656) * Remove injectReactDOMEventListener from ReactBrowserEventEmitter This PR removes the injection of ReactDOMEventListener from ReactBrowserEventEmitter. Instead, the required initialization will happen directly in ReactDOMInjection. This injection was (probably) originally implemented for React Native but never used, so we can clean it up. * Mention how to see the full ouput of fiber tests --- contributing/how-to-contribute.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/how-to-contribute.md b/contributing/how-to-contribute.md index 3403ca379..82591008e 100644 --- a/contributing/how-to-contribute.md +++ b/contributing/how-to-contribute.md @@ -83,7 +83,7 @@ The core team is monitoring for pull requests. We will review your pull request 5. Make sure your code lints (`npm run lint`). 6. Format your code with [prettier](https://github.com/prettier/prettier) (`npm run prettier`). 7. Run the [Flow](https://flowtype.org/) typechecks (`npm run flow`). -8. If you added or removed any tests, run `./scripts/fiber/record-tests` before submitting the pull request, and commit the resulting changes. +8. If you added or removed any tests, run `./scripts/fiber/record-tests` before submitting the pull request, and commit the resulting changes. You can see the full output of fiber tests with `REACT_DOM_JEST_USE_FIBER=1 npm test`. 9. If you haven't already, complete the CLA. ### Contributor License Agreement (CLA)