mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
* wip * better * better * track commits * better * wip * Fix * Add some lifecycles * wip * Naming * Moar emojis * Remove stacks in favor of a flag * Fix Flow * Gate behind __DEV__ * Revert flag for testing * Measure all lifecycles * Push it to the limits * Polish * Indent * Refactor and track cascading updates * More prominent warnings * Make mark names themselves readable This is useful for RN Systrace which doesn't let us assign labels after the fact. * Keep track of how many effects we call * Fix typo * Do less work to reduce the overhead * Fix lint * Remove closure * Remove unintentional formatting changes * Add tests * Fix test regex and record tests * Disable irrelevant tests needed for ReactPerf * Fix typo * Fix lint and flow * Don't treat cWM or cWRP as cascading * Whitespace * Update tests * Gate callComponentWillUnmountWithTimerInDev definition by DEV
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js
|
|
* should not warn when server-side rendering `onScroll`
|
|
* should warn about incorrect casing on properties (ssr)
|
|
* should warn about incorrect casing on event handlers (ssr)
|
|
* should warn about class (ssr)
|
|
* should suggest property name if available (ssr)
|
|
|
|
src/renderers/dom/shared/__tests__/ReactDOMServerIntegration-test.js
|
|
* renders a blank div with client render on top of bad server markup
|
|
* renders a div with inline styles with client render on top of bad server markup
|
|
* renders a self-closing tag with client render on top of bad server markup
|
|
* renders a self-closing tag as a child with client render on top of bad server markup
|
|
|
|
src/renderers/dom/shared/__tests__/ReactMount-test.js
|
|
* should warn if mounting into dirty rendered markup
|
|
* should account for escaping on a checksum mismatch
|
|
|
|
src/renderers/dom/shared/__tests__/ReactMountDestruction-test.js
|
|
* should warn when unmounting a non-container root node
|
|
* should warn when unmounting a non-container, non-root node
|
|
|
|
src/renderers/dom/shared/__tests__/ReactServerRendering-test.js
|
|
* should have the correct mounting behavior
|