@@ -51,6 +51,7 @@ function waitFor(
51
51
52
52
const usingJestFakeTimers = jestFakeTimersAreEnabled ( )
53
53
if ( usingJestFakeTimers ) {
54
+ const { unstable_advanceTimersWrapper : advanceTimersWrapper } = getConfig ( )
54
55
checkCallback ( )
55
56
// this is a dangerous rule to disable because it could lead to an
56
57
// infinite loop. However, eslint isn't smart enough to know that we're
@@ -71,7 +72,9 @@ function waitFor(
71
72
// third party code that's setting up recursive timers so rapidly that
72
73
// the user's timer's don't get a chance to resolve. So we'll advance
73
74
// by an interval instead. (We have a test for this case).
74
- jest . advanceTimersByTime ( interval )
75
+ advanceTimersWrapper ( ( ) => {
76
+ jest . advanceTimersByTime ( interval )
77
+ } )
75
78
76
79
// It's really important that checkCallback is run *before* we flush
77
80
// in-flight promises. To be honest, I'm not sure why, and I can't quite
@@ -84,9 +87,11 @@ function waitFor(
84
87
// of parallelization so we're fine.
85
88
// https://stackoverflow.com/a/59243586/971592
86
89
// eslint-disable-next-line no-await-in-loop
87
- await new Promise ( r => {
88
- setTimeout ( r , 0 )
89
- jest . advanceTimersByTime ( 0 )
90
+ await advanceTimersWrapper ( async ( ) => {
91
+ await new Promise ( r => {
92
+ setTimeout ( r , 0 )
93
+ jest . advanceTimersByTime ( 0 )
94
+ } )
90
95
} )
91
96
}
92
97
} else {
0 commit comments