Skip to content

Commit 45830f5

Browse files
authoredSep 11, 2021
feat(config): Add unstable_advanceTimersWrapper (#1022)
1 parent c7ba193 commit 45830f5

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed
 

‎src/config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ interface InternalConfig extends Config {
1212
let config: InternalConfig = {
1313
testIdAttribute: 'data-testid',
1414
asyncUtilTimeout: 1000,
15-
// this is to support React's async `act` function.
15+
// asyncWrapper and advanceTimersWrapper is to support React's async `act` function.
1616
// forcing react-testing-library to wrap all async functions would've been
1717
// a total nightmare (consider wrapping every findBy* query and then also
1818
// updating `within` so those would be wrapped too. Total nightmare).
1919
// so we have this config option that's really only intended for
2020
// react-testing-library to use. For that reason, this feature will remain
2121
// undocumented.
2222
asyncWrapper: cb => cb(),
23+
unstable_advanceTimersWrapper: cb => cb(),
2324
eventWrapper: cb => cb(),
2425
// default value for the `hidden` option in `ByRole` queries
2526
defaultHidden: false,

‎src/wait-for.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ function waitFor(
5151

5252
const usingJestFakeTimers = jestFakeTimersAreEnabled()
5353
if (usingJestFakeTimers) {
54+
const {unstable_advanceTimersWrapper: advanceTimersWrapper} = getConfig()
5455
checkCallback()
5556
// this is a dangerous rule to disable because it could lead to an
5657
// infinite loop. However, eslint isn't smart enough to know that we're
@@ -71,7 +72,9 @@ function waitFor(
7172
// third party code that's setting up recursive timers so rapidly that
7273
// the user's timer's don't get a chance to resolve. So we'll advance
7374
// by an interval instead. (We have a test for this case).
74-
jest.advanceTimersByTime(interval)
75+
advanceTimersWrapper(() => {
76+
jest.advanceTimersByTime(interval)
77+
})
7578

7679
// It's really important that checkCallback is run *before* we flush
7780
// in-flight promises. To be honest, I'm not sure why, and I can't quite
@@ -84,9 +87,11 @@ function waitFor(
8487
// of parallelization so we're fine.
8588
// https://stackoverflow.com/a/59243586/971592
8689
// 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+
})
9095
})
9196
}
9297
} else {

‎types/config.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
export interface Config {
22
testIdAttribute: string
3+
/**
4+
* WARNING: `unstable` prefix means this API may change in patch and minor releases.
5+
* @param cb
6+
*/
7+
unstable_advanceTimersWrapper(cb: (...args: unknown[]) => unknown): unknown
38
// eslint-disable-next-line @typescript-eslint/no-explicit-any
49
asyncWrapper(cb: (...args: any[]) => any): Promise<any>
510
// eslint-disable-next-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)
Please sign in to comment.