@@ -4,134 +4,10 @@ src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js
4
4
* gives source code refs for unknown prop warning for exact elements in composition (ssr)
5
5
6
6
src/renderers/dom/shared/__tests__/ReactDOMServerIntegration-test.js
7
- * renders a blank div with client render on top of good server markup
8
- * renders a div with inline styles with client render on top of good server markup
9
- * renders a self-closing tag with client render on top of good server markup
10
- * renders a self-closing tag as a child with client render on top of good server markup
11
- * renders simple numbers with client render on top of good server markup
12
- * renders simple strings with client render on top of good server markup
13
- * renders string prop with true value with client render on top of good server markup
14
- * renders string prop with false value with client render on top of good server markup
15
- * renders boolean prop with true value with client render on top of good server markup
16
- * renders boolean prop with false value with client render on top of good server markup
17
- * renders boolean prop with self value with client render on top of good server markup
18
- * renders boolean prop with "" value with client render on top of good server markup
19
- * renders boolean prop with string value with client render on top of good server markup
20
- * renders boolean prop with array value with client render on top of good server markup
21
- * renders boolean prop with object value with client render on top of good server markup
22
- * renders boolean prop with non-zero number value with client render on top of good server markup
23
- * renders boolean prop with zero value with client render on top of good server markup
24
- * renders download prop with true value with client render on top of good server markup
25
- * renders download prop with false value with client render on top of good server markup
26
- * renders download prop with string value with client render on top of good server markup
27
- * renders download prop with string "true" value with client render on top of good server markup
28
- * renders className prop with string value with client render on top of good server markup
29
- * renders className prop with empty string value with client render on top of good server markup
30
- * renders className prop with true value with client render on top of good server markup
31
- * renders className prop with false value with client render on top of good server markup
32
- * renders htmlFor with string value with client render on top of good server markup
33
- * renders htmlFor with an empty string with client render on top of good server markup
34
- * renders className prop with true value with client render on top of good server markup
35
- * renders className prop with false value with client render on top of good server markup
36
- * renders no ref attribute with client render on top of good server markup
37
- * renders no children attribute with client render on top of good server markup
38
- * renders no key attribute with client render on top of good server markup
39
- * renders no dangerouslySetInnerHTML attribute with client render on top of good server markup
40
- * renders no unknown attributes with client render on top of good server markup
41
- * renders unknown data- attributes with client render on top of good server markup
42
- * renders no unknown attributes for non-standard elements with client render on top of good server markup
43
- * renders unknown attributes for custom elements with client render on top of good server markup
44
- * renders unknown attributes for custom elements using is with client render on top of good server markup
45
- * renders no HTML events with client render on top of good server markup
46
- * renders a div with text with client render on top of good server markup
47
- * renders a div with text with flanking whitespace with client render on top of good server markup
48
- * renders a div with an empty text child with client render on top of good server markup
49
- * renders a div with multiple empty text children with client render on top of good server markup
50
- * renders a div with multiple whitespace children with client render on top of good server markup
51
- * renders a div with text sibling to a node with client render on top of good server markup
52
- * renders a non-standard element with text with client render on top of good server markup
53
- * renders a custom element with text with client render on top of good server markup
54
- * renders a leading blank child with a text sibling with client render on top of good server markup
55
- * renders a trailing blank child with a text sibling with client render on top of good server markup
56
- * renders an element with two text children with client render on top of good server markup
57
- * renders a number as single child with client render on top of good server markup
58
- * renders zero as single child with client render on top of good server markup
59
- * renders an element with number and text children with client render on top of good server markup
60
- * renders null single child as blank with client render on top of good server markup
61
- * renders false single child as blank with client render on top of good server markup
62
- * renders undefined single child as blank with client render on top of good server markup
63
- * renders a null component children as empty with client render on top of good server markup
64
- * renders null children as blank with client render on top of good server markup
65
- * renders false children as blank with client render on top of good server markup
66
- * renders null and false children together as blank with client render on top of good server markup
67
- * renders only null and false children as blank with client render on top of good server markup
68
- * renders an svg element with client render on top of good server markup
69
- * renders svg element with an xlink with client render on top of good server markup
70
- * renders a math element with client render on top of good server markup
71
- * renders an img with client render on top of good server markup
72
- * renders a button with client render on top of good server markup
73
- * renders a div with dangerouslySetInnerHTML with client render on top of good server markup
74
- * renders a newline-eating tag with content not starting with \n with client render on top of good server markup
75
- * renders a newline-eating tag with content starting with \n with client render on top of good server markup
76
- * renders a normal tag with content starting with \n with client render on top of good server markup
77
- * renders stateless components with client render on top of good server markup
78
- * renders ES6 class components with client render on top of good server markup
79
- * renders factory components with client render on top of good server markup
80
- * renders single child hierarchies of components with client render on top of good server markup
81
- * renders multi-child hierarchies of components with client render on top of good server markup
82
- * renders a div with a child with client render on top of good server markup
83
- * renders a div with multiple children with client render on top of good server markup
84
- * renders a div with multiple children separated by whitespace with client render on top of good server markup
85
- * renders a div with a single child surrounded by whitespace with client render on top of good server markup
86
- * renders >,<, and & as single child with client render on top of good server markup
87
- * renders >,<, and & as multiple children with client render on top of good server markup
88
- * renders an input with a value and an onChange with client render on top of good server markup
89
- * renders an input with a value and readOnly with client render on top of good server markup
90
- * renders an input with a value and no onChange/readOnly with client render on top of good server markup
91
- * renders an input with a defaultValue with client render on top of good server markup
92
- * renders an input value overriding defaultValue with client render on top of good server markup
93
- * renders an input value overriding defaultValue no matter the prop order with client render on top of good server markup
94
- * renders a checkbox that is checked with an onChange with client render on top of good server markup
95
- * renders a checkbox that is checked with readOnly with client render on top of good server markup
96
- * renders a checkbox that is checked and no onChange/readOnly with client render on top of good server markup
97
- * renders a checkbox with defaultChecked with client render on top of good server markup
98
- * renders a checkbox checked overriding defaultChecked with client render on top of good server markup
99
- * renders a checkbox checked overriding defaultChecked no matter the prop order with client render on top of good server markup
100
- * renders a textarea with a value and an onChange with client render on top of good server markup
101
- * renders a textarea with a value and readOnly with client render on top of good server markup
102
- * renders a textarea with a value and no onChange/readOnly with client render on top of good server markup
103
- * renders a textarea with a defaultValue with client render on top of good server markup
104
- * renders a textarea value overriding defaultValue with client render on top of good server markup
105
- * renders a textarea value overriding defaultValue no matter the prop order with client render on top of good server markup
106
- * renders a select with a value and an onChange with client render on top of good server markup
107
- * renders a select with a value and readOnly with client render on top of good server markup
108
- * renders a select with a multiple values and an onChange with client render on top of good server markup
109
- * renders a select with a multiple values and readOnly with client render on top of good server markup
110
- * renders a select with a value and no onChange/readOnly with client render on top of good server markup
111
- * renders a select with a defaultValue with client render on top of good server markup
112
- * renders a select value overriding defaultValue with client render on top of good server markup
113
- * renders a select value overriding defaultValue no matter the prop order with client render on top of good server markup
114
- * renders a controlled text input with client render on top of good server markup
115
- * renders a controlled textarea with client render on top of good server markup
116
- * renders a controlled checkbox with client render on top of good server markup
117
- * renders a controlled select with client render on top of good server markup
118
- * should not blow away user-entered text on successful reconnect to an uncontrolled input
119
- * should not blow away user-entered text on successful reconnect to a controlled input
120
7
* should not blow away user-entered text on successful reconnect to an uncontrolled checkbox
121
8
* should not blow away user-entered text on successful reconnect to a controlled checkbox
122
9
* should not blow away user-selected value on successful reconnect to an uncontrolled select
123
10
* should not blow away user-selected value on successful reconnect to an controlled select
124
- * renders class child with context with client render on top of good server markup
125
- * renders stateless child with context with client render on top of good server markup
126
- * renders class child without context with client render on top of good server markup
127
- * renders stateless child without context with client render on top of good server markup
128
- * renders class child with wrong context with client render on top of good server markup
129
- * renders stateless child with wrong context with client render on top of good server markup
130
- * renders with context passed through to a grandchild with client render on top of good server markup
131
- * renders a child context overriding a parent context with client render on top of good server markup
132
- * renders a child context merged with a parent context with client render on top of good server markup
133
- * renders with a call to componentWillMount before getChildContext with client render on top of good server markup
134
- * should send the correct element to ref functions on client
135
11
136
12
src/renderers/dom/shared/__tests__/ReactDOMTextComponent-test.js
137
13
* can reconcile text merged by Node.normalize() alongside other elements
@@ -141,12 +17,3 @@ src/renderers/dom/shared/__tests__/ReactDOMTextComponent-test.js
141
17
142
18
src/renderers/dom/shared/__tests__/ReactMount-test.js
143
19
* marks top-level mounts
144
-
145
- src/renderers/dom/shared/__tests__/ReactRenderDocument-test.js
146
- * should be able to adopt server markup
147
- * should not be able to unmount component from document node
148
- * should not be able to switch root constructors
149
- * should be able to mount into document
150
- * should give helpful errors on state desync
151
- * should throw on full document render w/ no markup
152
- * supports findDOMNode on full-page components
0 commit comments