11// Jest Snapshot v1, https://goo.gl/fbAQLP
22
33exports [` ReactDebugFiberPerf captures all lifecycles 1` ] = `
4- "⚛ (Waiting for async callback...)
4+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
55
66// Mount
77⚛ (React Tree Reconciliation)
@@ -15,7 +15,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
1515 ⚛ (Calling Lifecycle Methods: 1 Total)
1616 ⚛ AllLifecycles.componentDidMount
1717
18- ⚛ (Waiting for async callback...)
18+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
1919
2020// Update
2121⚛ (React Tree Reconciliation)
@@ -31,7 +31,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
3131 ⚛ (Calling Lifecycle Methods: 2 Total)
3232 ⚛ AllLifecycles.componentDidUpdate
3333
34- ⚛ (Waiting for async callback...)
34+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
3535
3636// Unmount
3737⚛ (React Tree Reconciliation)
@@ -45,7 +45,7 @@ exports[`ReactDebugFiberPerf captures all lifecycles 1`] = `
4545` ;
4646
4747exports [` ReactDebugFiberPerf deduplicates lifecycle names during commit to reduce overhead 1` ] = `
48- "⚛ (Waiting for async callback...)
48+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
4949
5050// The commit phase should mention A and B just once
5151⚛ (React Tree Reconciliation)
@@ -62,7 +62,7 @@ exports[`ReactDebugFiberPerf deduplicates lifecycle names during commit to reduc
6262 ⚛ A.componentDidUpdate
6363 ⚛ B.componentDidUpdate
6464
65- ⚛ (Waiting for async callback...)
65+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
6666
6767// Because of deduplication, we don't know B was cascading,
6868// but we should still see the warning for the commit phase.
@@ -112,7 +112,7 @@ exports[`ReactDebugFiberPerf does not schedule an extra callback if setState is
112112` ;
113113
114114exports [` ReactDebugFiberPerf does not treat setState from cWM or cWRP as cascading 1` ] = `
115- "⚛ (Waiting for async callback...)
115+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
116116
117117// Should not print a warning
118118⚛ (React Tree Reconciliation)
@@ -125,7 +125,7 @@ exports[`ReactDebugFiberPerf does not treat setState from cWM or cWRP as cascadi
125125 ⚛ (Committing Host Effects: 1 Total)
126126 ⚛ (Calling Lifecycle Methods: 0 Total)
127127
128- ⚛ (Waiting for async callback...)
128+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
129129
130130// Should not print a warning
131131⚛ (React Tree Reconciliation)
@@ -141,7 +141,7 @@ exports[`ReactDebugFiberPerf does not treat setState from cWM or cWRP as cascadi
141141` ;
142142
143143exports [` ReactDebugFiberPerf measures a simple reconciliation 1` ] = `
144- "⚛ (Waiting for async callback...)
144+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
145145
146146// Mount
147147⚛ (React Tree Reconciliation)
@@ -153,7 +153,7 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
153153 ⚛ (Committing Host Effects: 1 Total)
154154 ⚛ (Calling Lifecycle Methods: 0 Total)
155155
156- ⚛ (Waiting for async callback...)
156+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
157157
158158// Update
159159⚛ (React Tree Reconciliation)
@@ -165,7 +165,7 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
165165 ⚛ (Committing Host Effects: 2 Total)
166166 ⚛ (Calling Lifecycle Methods: 2 Total)
167167
168- ⚛ (Waiting for async callback...)
168+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
169169
170170// Unmount
171171⚛ (React Tree Reconciliation)
@@ -178,22 +178,22 @@ exports[`ReactDebugFiberPerf measures a simple reconciliation 1`] = `
178178` ;
179179
180180exports [` ReactDebugFiberPerf measures deferred work in chunks 1` ] = `
181- "⚛ (Waiting for async callback...)
181+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
182182
183183// Start mounting Parent and A
184184⚛ (React Tree Reconciliation)
185185 ⚛ Parent [mount]
186186 ⚛ A [mount]
187187 ⚛ Child [mount]
188188
189- ⚛ (Waiting for async callback...)
189+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
190190
191191// Mount B just a little (but not enough to memoize)
192192⚛ (React Tree Reconciliation)
193193 ⚛ Parent [mount]
194194 ⚛ B [mount]
195195
196- ⚛ (Waiting for async callback...)
196+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
197197
198198// Complete B and Parent
199199⚛ (React Tree Reconciliation)
@@ -218,7 +218,7 @@ exports[`ReactDebugFiberPerf measures deprioritized work 1`] = `
218218 ⚛ (Committing Host Effects: 1 Total)
219219 ⚛ (Calling Lifecycle Methods: 0 Total)
220220
221- ⚛ (Waiting for async callback...)
221+ ⚛ (Waiting for async callback... will force flush in 10737418210 ms )
222222
223223// Flush the child
224224⚛ (React Tree Reconciliation)
@@ -232,7 +232,7 @@ exports[`ReactDebugFiberPerf measures deprioritized work 1`] = `
232232` ;
233233
234234exports [` ReactDebugFiberPerf recovers from caught errors 1` ] = `
235- "⚛ (Waiting for async callback...)
235+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
236236
237237// Stop on Baddie and restart from Boundary
238238⚛ (React Tree Reconciliation)
@@ -262,7 +262,7 @@ exports[`ReactDebugFiberPerf recovers from caught errors 1`] = `
262262` ;
263263
264264exports [` ReactDebugFiberPerf recovers from fatal errors 1` ] = `
265- "⚛ (Waiting for async callback...)
265+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
266266
267267// Will fatal
268268⚛ (React Tree Reconciliation)
@@ -276,7 +276,7 @@ exports[`ReactDebugFiberPerf recovers from fatal errors 1`] = `
276276 ⚛ (Committing Host Effects: 1 Total)
277277 ⚛ (Calling Lifecycle Methods: 0 Total)
278278
279- ⚛ (Waiting for async callback...)
279+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
280280
281281// Will reconcile from a clean state
282282⚛ (React Tree Reconciliation)
@@ -291,7 +291,7 @@ exports[`ReactDebugFiberPerf recovers from fatal errors 1`] = `
291291` ;
292292
293293exports [` ReactDebugFiberPerf skips parents during setState 1` ] = `
294- "⚛ (Waiting for async callback...)
294+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
295295
296296// Should include just A and B, no Parents
297297⚛ (React Tree Reconciliation)
@@ -306,7 +306,7 @@ exports[`ReactDebugFiberPerf skips parents during setState 1`] = `
306306` ;
307307
308308exports [` ReactDebugFiberPerf supports portals 1` ] = `
309- "⚛ (Waiting for async callback...)
309+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
310310
311311⚛ (React Tree Reconciliation)
312312 ⚛ Parent [mount]
@@ -320,7 +320,7 @@ exports[`ReactDebugFiberPerf supports portals 1`] = `
320320` ;
321321
322322exports [` ReactDebugFiberPerf supports returns 1` ] = `
323- "⚛ (Waiting for async callback...)
323+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
324324
325325⚛ (React Tree Reconciliation)
326326 ⚛ App [mount]
@@ -339,12 +339,12 @@ exports[`ReactDebugFiberPerf supports returns 1`] = `
339339` ;
340340
341341exports [` ReactDebugFiberPerf warns if an in-progress update is interrupted 1` ] = `
342- "⚛ (Waiting for async callback...)
342+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
343343
344344⚛ (React Tree Reconciliation)
345345 ⚛ Foo [mount]
346346
347- ⚛ (Waiting for async callback...)
347+ ⚛ (Waiting for async callback... will force flush in 5230 ms )
348348 ⛔ (React Tree Reconciliation) Warning: A top-level update interrupted the previous render
349349 ⚛ Foo [mount]
350350 ⚛ (Committing Changes)
@@ -362,7 +362,7 @@ exports[`ReactDebugFiberPerf warns if an in-progress update is interrupted 1`] =
362362` ;
363363
364364exports [` ReactDebugFiberPerf warns if async work expires (starvation) 1` ] = `
365- "⛔ (Waiting for async callback...) Warning: React was blocked by main thread
365+ "⛔ (Waiting for async callback... will force flush in 5230 ms ) Warning: React was blocked by main thread
366366
367367⚛ (React Tree Reconciliation)
368368 ⚛ Foo [mount]
@@ -375,7 +375,7 @@ exports[`ReactDebugFiberPerf warns if async work expires (starvation) 1`] = `
375375` ;
376376
377377exports [` ReactDebugFiberPerf warns on cascading renders from setState 1` ] = `
378- "⚛ (Waiting for async callback...)
378+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
379379
380380// Should print a warning
381381⚛ (React Tree Reconciliation)
@@ -399,7 +399,7 @@ exports[`ReactDebugFiberPerf warns on cascading renders from setState 1`] = `
399399` ;
400400
401401exports [` ReactDebugFiberPerf warns on cascading renders from top-level render 1` ] = `
402- "⚛ (Waiting for async callback...)
402+ "⚛ (Waiting for async callback... will force flush in 5230 ms )
403403
404404// Rendering the first root
405405⚛ (React Tree Reconciliation)
0 commit comments