|
1 | | -src/renderers/__tests__/ReactComponentTreeHook-test.js |
2 | | -* uses displayName or Unknown for classic components |
3 | | -* uses displayName, name, or ReactComponent for modern components |
4 | | -* uses displayName, name, or Object for factory components |
5 | | -* uses displayName, name, or StatelessComponent for functional components |
6 | | -* reports a host tree correctly |
7 | | -* reports a simple tree with composites correctly |
8 | | -* reports a tree with composites correctly |
9 | | -* ignores null children |
10 | | -* ignores false children |
11 | | -* reports text nodes as children |
12 | | -* reports a single text node as a child |
13 | | -* reports a single number node as a child |
14 | | -* reports a zero as a child |
15 | | -* skips empty nodes for multiple children |
16 | | -* reports html content as no children |
17 | | -* updates text of a single text child |
18 | | -* updates from no children to a single text child |
19 | | -* updates from a single text child to no children |
20 | | -* updates from html content to a single text child |
21 | | -* updates from a single text child to html content |
22 | | -* updates from no children to multiple text children |
23 | | -* updates from multiple text children to no children |
24 | | -* updates from html content to multiple text children |
25 | | -* updates from multiple text children to html content |
26 | | -* updates from html content to no children |
27 | | -* updates from no children to html content |
28 | | -* updates from one text child to multiple text children |
29 | | -* updates from multiple text children to one text child |
30 | | -* updates text nodes when reordering |
31 | | -* updates host nodes when reordering with keys |
32 | | -* updates host nodes when reordering without keys |
33 | | -* updates a single composite child of a different type |
34 | | -* updates a single composite child of the same type |
35 | | -* updates from no children to a single composite child |
36 | | -* updates from a single composite child to no children |
37 | | -* updates mixed children |
38 | | -* updates with a host child |
39 | | -* updates from null to a host child |
40 | | -* updates from a host child to null |
41 | | -* updates from a host child to a composite child |
42 | | -* updates from a composite child to a host child |
43 | | -* updates from null to a composite child |
44 | | -* updates from a composite child to null |
45 | | -* updates with a host child |
46 | | -* updates from null to a host child |
47 | | -* updates from a host child to null |
48 | | -* updates from a host child to a composite child |
49 | | -* updates from a composite child to a host child |
50 | | -* updates from null to a composite child |
51 | | -* updates from a composite child to null |
52 | | -* tracks owner correctly |
53 | | -* purges unmounted components automatically |
54 | | -* reports update counts |
55 | | -* does not report top-level wrapper as a root |
56 | | -* registers inlined text nodes |
57 | | -* works |
58 | | - |
59 | | -src/renderers/__tests__/ReactComponentTreeHook-test.native.js |
60 | | -* uses displayName or Unknown for classic components |
61 | | -* uses displayName, name, or ReactComponent for modern components |
62 | | -* uses displayName, name, or Object for factory components |
63 | | -* uses displayName, name, or StatelessComponent for functional components |
64 | | -* reports a host tree correctly |
65 | | -* reports a simple tree with composites correctly |
66 | | -* reports a tree with composites correctly |
67 | | -* ignores null children |
68 | | -* ignores false children |
69 | | -* reports text nodes as children |
70 | | -* reports a single text node as a child |
71 | | -* reports a single number node as a child |
72 | | -* reports a zero as a child |
73 | | -* skips empty nodes for multiple children |
74 | | -* updates text of a single text child |
75 | | -* updates from no children to a single text child |
76 | | -* updates from a single text child to no children |
77 | | -* updates from no children to multiple text children |
78 | | -* updates from multiple text children to no children |
79 | | -* updates from one text child to multiple text children |
80 | | -* updates from multiple text children to one text child |
81 | | -* updates text nodes when reordering |
82 | | -* updates host nodes when reordering with keys |
83 | | -* updates host nodes when reordering with keys |
84 | | -* updates a single composite child of a different type |
85 | | -* updates a single composite child of the same type |
86 | | -* updates from no children to a single composite child |
87 | | -* updates from a single composite child to no children |
88 | | -* updates mixed children |
89 | | -* updates with a host child |
90 | | -* updates from null to a host child |
91 | | -* updates from a host child to null |
92 | | -* updates from a host child to a composite child |
93 | | -* updates from a composite child to a host child |
94 | | -* updates from null to a composite child |
95 | | -* updates from a composite child to null |
96 | | -* updates with a host child |
97 | | -* updates from null to a host child |
98 | | -* updates from a host child to null |
99 | | -* updates from a host child to a composite child |
100 | | -* updates from a composite child to a host child |
101 | | -* updates from null to a composite child |
102 | | -* updates from a composite child to null |
103 | | -* tracks owner correctly |
104 | | -* purges unmounted components automatically |
105 | | -* reports update counts |
106 | | -* does not report top-level wrapper as a root |
107 | | - |
108 | | -src/renderers/__tests__/ReactHostOperationHistoryHook-test.js |
109 | | -* gets recorded for host roots |
110 | | -* gets recorded for composite roots |
111 | | -* gets recorded when a native is mounted deeply instead of null |
112 | | -* gets recorded during mount |
113 | | -* gets recorded during an update |
114 | | -* gets ignored if the styles are shallowly equal |
115 | | -* gets recorded during mount |
116 | | -* gets recorded during mount |
117 | | -* gets recorded during mount |
118 | | -* gets recorded during an update from text content |
119 | | -* gets recorded during an update from html |
120 | | -* gets recorded during an update from children |
121 | | -* gets recorded when composite renders to a different type |
122 | | -* gets recorded when composite renders to null after a native |
123 | | -* gets recorded during an update from text content |
124 | | -* gets recorded during an update from html |
125 | | -* gets recorded during an update from children |
126 | | -* gets reported when a child is inserted |
127 | | -* gets reported when a child is inserted |
128 | | -* gets reported when a child is removed |
129 | | - |
130 | 1 | src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js |
131 | 2 | * should not warn when server-side rendering `onScroll` |
132 | 3 | * should warn about incorrect casing on properties (ssr) |
|
0 commit comments