File tree 1 file changed +1
-29
lines changed
1 file changed +1
-29
lines changed Original file line number Diff line number Diff line change @@ -12,20 +12,6 @@ import act, {
12
12
} from './act-compat'
13
13
import { fireEvent } from './fire-event'
14
14
15
- function jestFakeTimersAreEnabled ( ) {
16
- /* istanbul ignore else */
17
- if ( typeof jest !== 'undefined' && jest !== null ) {
18
- return (
19
- // legacy timers
20
- setTimeout . _isMockFunction === true || // modern timers
21
- // eslint-disable-next-line prefer-object-has-own -- No Object.hasOwn in all target environments we support.
22
- Object . prototype . hasOwnProperty . call ( setTimeout , 'clock' )
23
- )
24
- } // istanbul ignore next
25
-
26
- return false
27
- }
28
-
29
15
configureDTL ( {
30
16
unstable_advanceTimersWrapper : cb => {
31
17
// Only needed to support test environments that enable fake timers after modules are loaded.
@@ -43,21 +29,7 @@ configureDTL({
43
29
const previousActEnvironment = getIsReactActEnvironment ( )
44
30
setReactActEnvironment ( false )
45
31
try {
46
- const result = await cb ( )
47
- // Drain microtask queue.
48
- // Otherwise we'll restore the previous act() environment, before we resolve the `waitFor` call.
49
- // The caller would have no chance to wrap the in-flight Promises in `act()`
50
- await new Promise ( resolve => {
51
- setTimeout ( ( ) => {
52
- resolve ( )
53
- } , 0 )
54
-
55
- if ( jestFakeTimersAreEnabled ( ) ) {
56
- jest . advanceTimersByTime ( 0 )
57
- }
58
- } )
59
-
60
- return result
32
+ return await cb ( )
61
33
} finally {
62
34
setReactActEnvironment ( previousActEnvironment )
63
35
}
You can’t perform that action at this time.
0 commit comments