@@ -4,7 +4,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
4
4
"⚛ (Waiting for async callback... will force flush in 5230 ms)
5
5
6
6
// Mount
7
- ⚛ (React Tree Reconciliation)
7
+ ⚛ (React Tree Reconciliation: Completed Root )
8
8
⚛ AllLifecycles [mount]
9
9
⚛ AllLifecycles.componentWillMount
10
10
⚛ AllLifecycles.getChildContext
@@ -18,7 +18,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
18
18
⚛ (Waiting for async callback... will force flush in 5230 ms)
19
19
20
20
// Update
21
- ⚛ (React Tree Reconciliation)
21
+ ⚛ (React Tree Reconciliation: Completed Root )
22
22
⚛ AllLifecycles [update]
23
23
⚛ AllLifecycles.componentWillReceiveProps
24
24
⚛ AllLifecycles.shouldComponentUpdate
@@ -34,7 +34,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
34
34
⚛ (Waiting for async callback... will force flush in 5230 ms)
35
35
36
36
// Unmount
37
- ⚛ (React Tree Reconciliation)
37
+ ⚛ (React Tree Reconciliation: Completed Root )
38
38
39
39
⚛ (Committing Changes)
40
40
⚛ (Committing Snapshot Effects: 0 Total)
@@ -48,7 +48,7 @@ exports[`ReactDebugFiberPerf deduplicates lifecycle names during commit to reduc
48
48
"⚛ (Waiting for async callback... will force flush in 5230 ms)
49
49
50
50
// The commit phase should mention A and B just once
51
- ⚛ (React Tree Reconciliation)
51
+ ⚛ (React Tree Reconciliation: Completed Root )
52
52
⚛ Parent [update]
53
53
⚛ A [update]
54
54
⚛ B [update]
@@ -66,7 +66,7 @@ exports[`ReactDebugFiberPerf deduplicates lifecycle names during commit to reduc
66
66
67
67
// Because of deduplication, we don't know B was cascading,
68
68
// but we should still see the warning for the commit phase.
69
- ⚛ (React Tree Reconciliation)
69
+ ⚛ (React Tree Reconciliation: Completed Root )
70
70
⚛ Parent [update]
71
71
⚛ A [update]
72
72
⚛ B [update]
@@ -80,7 +80,7 @@ exports[`ReactDebugFiberPerf deduplicates lifecycle names during commit to reduc
80
80
⚛ A.componentDidUpdate
81
81
⚛ B.componentDidUpdate
82
82
83
- ⚛ (React Tree Reconciliation)
83
+ ⚛ (React Tree Reconciliation: Completed Root )
84
84
⚛ B [update]
85
85
86
86
⚛ (Committing Changes)
@@ -92,7 +92,7 @@ exports[`ReactDebugFiberPerf deduplicates lifecycle names during commit to reduc
92
92
` ;
93
93
94
94
exports [` ReactDebugFiberPerf does not schedule an extra callback if setState is called during a synchronous commit phase 1` ] = `
95
- "⚛ (React Tree Reconciliation)
95
+ "⚛ (React Tree Reconciliation: Completed Root )
96
96
⚛ Component [mount]
97
97
98
98
⛔ (Committing Changes) Warning: Lifecycle hook scheduled a cascading update
@@ -101,7 +101,7 @@ exports[`ReactDebugFiberPerf does not schedule an extra callback if setState is
101
101
⚛ (Calling Lifecycle Methods: 1 Total)
102
102
⛔ Component.componentDidMount Warning: Scheduled a cascading update
103
103
104
- ⚛ (React Tree Reconciliation)
104
+ ⚛ (React Tree Reconciliation: Completed Root )
105
105
⚛ Component [update]
106
106
107
107
⚛ (Committing Changes)
@@ -115,7 +115,7 @@ exports[`ReactDebugFiberPerf does not treat setState from cWM or cWRP as cascadi
115
115
"⚛ (Waiting for async callback... will force flush in 5230 ms)
116
116
117
117
// Should not print a warning
118
- ⚛ (React Tree Reconciliation)
118
+ ⚛ (React Tree Reconciliation: Completed Root )
119
119
⚛ Parent [mount]
120
120
⚛ NotCascading [mount]
121
121
⚛ NotCascading.componentWillMount
@@ -128,7 +128,7 @@ exports[`ReactDebugFiberPerf does not treat setState from cWM or cWRP as cascadi
128
128
⚛ (Waiting for async callback... will force flush in 5230 ms)
129
129
130
130
// Should not print a warning
131
- ⚛ (React Tree Reconciliation)
131
+ ⚛ (React Tree Reconciliation: Completed Root )
132
132
⚛ Parent [update]
133
133
⚛ NotCascading [update]
134
134
⚛ NotCascading.componentWillReceiveProps
@@ -144,7 +144,7 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
144
144
"⚛ (Waiting for async callback... will force flush in 5230 ms)
145
145
146
146
// Mount
147
- ⚛ (React Tree Reconciliation)
147
+ ⚛ (React Tree Reconciliation: Completed Root )
148
148
⚛ Parent [mount]
149
149
⚛ Child [mount]
150
150
@@ -156,7 +156,7 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
156
156
⚛ (Waiting for async callback... will force flush in 5230 ms)
157
157
158
158
// Update
159
- ⚛ (React Tree Reconciliation)
159
+ ⚛ (React Tree Reconciliation: Completed Root )
160
160
⚛ Parent [update]
161
161
⚛ Child [update]
162
162
@@ -168,7 +168,7 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
168
168
⚛ (Waiting for async callback... will force flush in 5230 ms)
169
169
170
170
// Unmount
171
- ⚛ (React Tree Reconciliation)
171
+ ⚛ (React Tree Reconciliation: Completed Root )
172
172
173
173
⚛ (Committing Changes)
174
174
⚛ (Committing Snapshot Effects: 0 Total)
@@ -181,22 +181,22 @@ exports[`ReactDebugFiberPerf measures deferred work in chunks 1`] = `
181
181
"⚛ (Waiting for async callback... will force flush in 5230 ms)
182
182
183
183
// Start mounting Parent and A
184
- ⚛ (React Tree Reconciliation)
184
+ ⚛ (React Tree Reconciliation: Yielded )
185
185
⚛ Parent [mount]
186
186
⚛ A [mount]
187
187
⚛ Child [mount]
188
188
189
189
⚛ (Waiting for async callback... will force flush in 5230 ms)
190
190
191
191
// Mount B just a little (but not enough to memoize)
192
- ⚛ (React Tree Reconciliation)
192
+ ⚛ (React Tree Reconciliation: Yielded )
193
193
⚛ Parent [mount]
194
194
⚛ B [mount]
195
195
196
196
⚛ (Waiting for async callback... will force flush in 5230 ms)
197
197
198
198
// Complete B and Parent
199
- ⚛ (React Tree Reconciliation)
199
+ ⚛ (React Tree Reconciliation: Completed Root )
200
200
⚛ Parent [mount]
201
201
⚛ B [mount]
202
202
⚛ Child [mount]
@@ -210,7 +210,7 @@ exports[`ReactDebugFiberPerf measures deferred work in chunks 1`] = `
210
210
211
211
exports [` ReactDebugFiberPerf measures deprioritized work 1` ] = `
212
212
"// Flush the parent
213
- ⚛ (React Tree Reconciliation)
213
+ ⚛ (React Tree Reconciliation: Completed Root )
214
214
⚛ Parent [mount]
215
215
216
216
⚛ (Committing Changes)
@@ -221,7 +221,7 @@ exports[`ReactDebugFiberPerf measures deprioritized work 1`] = `
221
221
⚛ (Waiting for async callback... will force flush in 10737418210 ms)
222
222
223
223
// Flush the child
224
- ⚛ (React Tree Reconciliation)
224
+ ⚛ (React Tree Reconciliation: Completed Root )
225
225
⚛ Child [mount]
226
226
227
227
⚛ (Committing Changes)
@@ -235,13 +235,13 @@ exports[`ReactDebugFiberPerf recovers from caught errors 1`] = `
235
235
"⚛ (Waiting for async callback... will force flush in 5230 ms)
236
236
237
237
// Stop on Baddie and restart from Boundary
238
- ⚛ (React Tree Reconciliation)
238
+ ⚛ (React Tree Reconciliation: Yielded )
239
239
⚛ Parent [mount]
240
240
⛔ Boundary [mount] Warning: An error was thrown inside this error boundary
241
241
⚛ Parent [mount]
242
242
⚛ Baddie [mount]
243
243
244
- ⚛ (React Tree Reconciliation)
244
+ ⚛ (React Tree Reconciliation: Completed Root )
245
245
⚛ Parent [mount]
246
246
⚛ Boundary [mount]
247
247
@@ -250,7 +250,7 @@ exports[`ReactDebugFiberPerf recovers from caught errors 1`] = `
250
250
⚛ (Committing Host Effects: 2 Total)
251
251
⚛ (Calling Lifecycle Methods: 0 Total)
252
252
253
- ⚛ (React Tree Reconciliation)
253
+ ⚛ (React Tree Reconciliation: Completed Root )
254
254
⚛ Boundary [update]
255
255
⚛ ErrorReport [mount]
256
256
@@ -265,11 +265,11 @@ exports[`ReactDebugFiberPerf recovers from fatal errors 1`] = `
265
265
"⚛ (Waiting for async callback... will force flush in 5230 ms)
266
266
267
267
// Will fatal
268
- ⚛ (React Tree Reconciliation)
268
+ ⚛ (React Tree Reconciliation: Yielded )
269
269
⚛ Parent [mount]
270
270
⚛ Baddie [mount]
271
271
272
- ⚛ (React Tree Reconciliation)
272
+ ⚛ (React Tree Reconciliation: Completed Root )
273
273
274
274
⚛ (Committing Changes)
275
275
⚛ (Committing Snapshot Effects: 0 Total)
@@ -279,7 +279,7 @@ exports[`ReactDebugFiberPerf recovers from fatal errors 1`] = `
279
279
⚛ (Waiting for async callback... will force flush in 5230 ms)
280
280
281
281
// Will reconcile from a clean state
282
- ⚛ (React Tree Reconciliation)
282
+ ⚛ (React Tree Reconciliation: Completed Root )
283
283
⚛ Parent [mount]
284
284
⚛ Child [mount]
285
285
@@ -294,7 +294,7 @@ exports[`ReactDebugFiberPerf skips parents during setState 1`] = `
294
294
"⚛ (Waiting for async callback... will force flush in 5230 ms)
295
295
296
296
// Should include just A and B, no Parents
297
- ⚛ (React Tree Reconciliation)
297
+ ⚛ (React Tree Reconciliation: Completed Root )
298
298
⚛ A [update]
299
299
⚛ B [update]
300
300
@@ -308,7 +308,7 @@ exports[`ReactDebugFiberPerf skips parents during setState 1`] = `
308
308
exports [` ReactDebugFiberPerf supports portals 1` ] = `
309
309
"⚛ (Waiting for async callback... will force flush in 5230 ms)
310
310
311
- ⚛ (React Tree Reconciliation)
311
+ ⚛ (React Tree Reconciliation: Completed Root )
312
312
⚛ Parent [mount]
313
313
⚛ Child [mount]
314
314
@@ -322,7 +322,7 @@ exports[`ReactDebugFiberPerf supports portals 1`] = `
322
322
exports [` ReactDebugFiberPerf supports returns 1` ] = `
323
323
"⚛ (Waiting for async callback... will force flush in 5230 ms)
324
324
325
- ⚛ (React Tree Reconciliation)
325
+ ⚛ (React Tree Reconciliation: Completed Root )
326
326
⚛ App [mount]
327
327
⚛ CoParent [mount]
328
328
⚛ Indirection [mount]
@@ -341,18 +341,18 @@ exports[`ReactDebugFiberPerf supports returns 1`] = `
341
341
exports [` ReactDebugFiberPerf warns if an in-progress update is interrupted 1` ] = `
342
342
"⚛ (Waiting for async callback... will force flush in 5230 ms)
343
343
344
- ⚛ (React Tree Reconciliation)
344
+ ⚛ (React Tree Reconciliation: Yielded )
345
345
⚛ Foo [mount]
346
346
347
347
⚛ (Waiting for async callback... will force flush in 5230 ms)
348
- ⛔ (React Tree Reconciliation) Warning: A top-level update interrupted the previous render
348
+ ⛔ (React Tree Reconciliation: Completed Root ) Warning: A top-level update interrupted the previous render
349
349
⚛ Foo [mount]
350
350
⚛ (Committing Changes)
351
351
⚛ (Committing Snapshot Effects: 0 Total)
352
352
⚛ (Committing Host Effects: 1 Total)
353
353
⚛ (Calling Lifecycle Methods: 0 Total)
354
354
355
- ⚛ (React Tree Reconciliation)
355
+ ⚛ (React Tree Reconciliation: Completed Root )
356
356
357
357
⚛ (Committing Changes)
358
358
⚛ (Committing Snapshot Effects: 0 Total)
@@ -364,7 +364,7 @@ exports[`ReactDebugFiberPerf warns if an in-progress update is interrupted 1`] =
364
364
exports [` ReactDebugFiberPerf warns if async work expires (starvation) 1` ] = `
365
365
"⛔ (Waiting for async callback... will force flush in 5230 ms) Warning: React was blocked by main thread
366
366
367
- ⚛ (React Tree Reconciliation)
367
+ ⚛ (React Tree Reconciliation: Completed Root )
368
368
⚛ Foo [mount]
369
369
370
370
⚛ (Committing Changes)
@@ -378,7 +378,7 @@ exports[`ReactDebugFiberPerf warns on cascading renders from setState 1`] = `
378
378
"⚛ (Waiting for async callback... will force flush in 5230 ms)
379
379
380
380
// Should print a warning
381
- ⚛ (React Tree Reconciliation)
381
+ ⚛ (React Tree Reconciliation: Completed Root )
382
382
⚛ Parent [mount]
383
383
⚛ Cascading [mount]
384
384
@@ -388,7 +388,7 @@ exports[`ReactDebugFiberPerf warns on cascading renders from setState 1`] = `
388
388
⚛ (Calling Lifecycle Methods: 1 Total)
389
389
⛔ Cascading.componentDidMount Warning: Scheduled a cascading update
390
390
391
- ⚛ (React Tree Reconciliation)
391
+ ⚛ (React Tree Reconciliation: Completed Root )
392
392
⚛ Cascading [update]
393
393
394
394
⚛ (Committing Changes)
@@ -402,7 +402,7 @@ exports[`ReactDebugFiberPerf warns on cascading renders from top-level render 1`
402
402
"⚛ (Waiting for async callback... will force flush in 5230 ms)
403
403
404
404
// Rendering the first root
405
- ⚛ (React Tree Reconciliation)
405
+ ⚛ (React Tree Reconciliation: Completed Root )
406
406
⚛ Cascading [mount]
407
407
408
408
⛔ (Committing Changes) Warning: Lifecycle hook scheduled a cascading update
@@ -412,7 +412,7 @@ exports[`ReactDebugFiberPerf warns on cascading renders from top-level render 1`
412
412
⛔ Cascading.componentDidMount Warning: Scheduled a cascading update
413
413
414
414
// Scheduling another root from componentDidMount
415
- ⚛ (React Tree Reconciliation)
415
+ ⚛ (React Tree Reconciliation: Completed Root )
416
416
⚛ Child [mount]
417
417
418
418
⚛ (Committing Changes)
0 commit comments