Files
react/scripts/fiber/tests-passing-except-dev.txt
2016-11-14 13:22:47 +00:00

124 lines
5.9 KiB
Plaintext

src/addons/transitions/__tests__/ReactTransitionGroup-test.js
* should warn for duplicated keys with component stack info
src/isomorphic/classic/__tests__/ReactContextValidator-test.js
* should check context types
* should check child context types
src/isomorphic/classic/element/__tests__/ReactElementClone-test.js
* should check declared prop types after clone
src/isomorphic/classic/element/__tests__/ReactElementValidator-test.js
* warns for keys with component stack info
* should give context for PropType errors in nested components.
src/isomorphic/modern/element/__tests__/ReactJSXElementValidator-test.js
* should warn on invalid context types
src/renderers/dom/shared/__tests__/CSSPropertyOperations-test.js
* should warn when using hyphenated style names
* should warn when updating hyphenated style names
* warns when miscapitalizing vendored style names
* should warn about style having a trailing semicolon
* should warn about style containing a NaN value
src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js
* should warn when mutating style
* should warn for unknown prop
* should group multiple unknown prop warnings together
* should warn for onDblClick prop
* should warn nicely about NaN in style
* should reject attribute key injection attack on markup
* should reject attribute key injection attack on update
* should work error event on <source> element
* should emit a warning once for a named custom component using shady DOM
* should emit a warning once for an unnamed custom component using shady DOM
* should validate against use of innerHTML
* should warn about contentEditable and children
* should warn about contentEditable and children
* should warn about the `onScroll` issue when unsupported (IE8)
* should not warn when server-side rendering `onScroll`
* warns on invalid nesting
* warns on invalid nesting at root
* warns nicely for table rows
* gives useful context in warnings
* should warn about incorrect casing on properties (ssr)
* should warn about incorrect casing on event handlers (ssr)
* should warn about incorrect casing on properties
* should warn about incorrect casing on event handlers
* should warn about class
* should warn about props that are no longer supported
* should suggest property name if available
src/renderers/dom/shared/__tests__/ReactDOMInvalidARIAHook-test.js
* should warn for one invalid aria-* prop
* should warn for many invalid aria-* props
* should warn for an improperly cased aria-* prop
src/renderers/dom/shared/wrappers/__tests__/ReactDOMInput-test.js
* should warn with value and no onChange handler and readOnly specified
* should warn with checked and no onChange handler with readOnly specified
* should warn if value is null
* should warn if checked and defaultChecked props are specified
* should warn if value and defaultValue props are specified
* should warn if controlled input switches to uncontrolled (value is undefined)
* should warn if controlled input switches to uncontrolled (value is null)
* should warn if controlled input switches to uncontrolled with defaultValue
* should warn if uncontrolled input (value is undefined) switches to controlled
* should warn if uncontrolled input (value is null) switches to controlled
* should warn if controlled checkbox switches to uncontrolled (checked is undefined)
* should warn if controlled checkbox switches to uncontrolled (checked is null)
* should warn if controlled checkbox switches to uncontrolled with defaultChecked
* should warn if uncontrolled checkbox (checked is undefined) switches to controlled
* should warn if uncontrolled checkbox (checked is null) switches to controlled
* should warn if controlled radio switches to uncontrolled (checked is undefined)
* should warn if controlled radio switches to uncontrolled (checked is null)
* should warn if controlled radio switches to uncontrolled with defaultChecked
* should warn if uncontrolled radio (checked is undefined) switches to controlled
* should warn if uncontrolled radio (checked is null) switches to controlled
* should warn if radio checked false changes to become uncontrolled
src/renderers/dom/shared/wrappers/__tests__/ReactDOMSelect-test.js
* should warn if value is null
* should warn if value and defaultValue props are specified
src/renderers/dom/shared/wrappers/__tests__/ReactDOMTextarea-test.js
* should allow numbers as children
* should warn if value is null
* should warn if value and defaultValue are specified
src/renderers/dom/stack/client/__tests__/ReactMount-test.js
* should account for escaping on a checksum mismatch
* should warn if render removes React-rendered children
* should warn if the unmounted node was rendered by another copy of React
src/renderers/dom/stack/client/__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/shared/stack/reconciler/__tests__/ReactChildReconciler-test.js
* warns for duplicated keys
* warns for duplicated keys with component stack info
src/renderers/shared/stack/reconciler/__tests__/ReactComponentLifeCycle-test.js
* should correctly determine if a component is mounted
* should correctly determine if a null component is mounted
* warns if findDOMNode is used inside render
src/renderers/shared/stack/reconciler/__tests__/ReactCompositeComponent-test.js
* should disallow nested render calls
* should warn when mutated props are passed
src/renderers/shared/stack/reconciler/__tests__/ReactMultiChild-test.js
* should warn for duplicated keys with component stack info
src/renderers/shared/stack/reconciler/__tests__/ReactMultiChildText-test.js
* should reorder keyed text nodes
src/renderers/shared/stack/reconciler/__tests__/ReactStatelessComponent-test.js
* should warn for childContextTypes on a functional component
* should warn when given a ref
src/shared/utils/__tests__/traverseAllChildren-test.js
* should warn for using maps as children with owner info