File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed
packages/scheduler/src/forks Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 11
11
// Use __VARIANT__ to simulate a GK. The tests will be run twice: once
12
12
// with the __VARIANT__ set to `true`, and once set to `false`.
13
13
14
- export const userBlockingPriorityTimeout = 250 ;
15
- export const normalPriorityTimeout = 5000 ;
16
- export const lowPriorityTimeout = 10000 ;
17
14
export const enableRequestPaint = __VARIANT__ ;
Original file line number Diff line number Diff line change 10
10
// $FlowFixMe[cannot-resolve-module]
11
11
const dynamicFeatureFlags = require ( 'SchedulerFeatureFlags' ) ;
12
12
13
- export const {
14
- userBlockingPriorityTimeout,
15
- normalPriorityTimeout,
16
- lowPriorityTimeout,
17
- enableRequestPaint,
18
- } = dynamicFeatureFlags ;
13
+ export const { enableRequestPaint} = dynamicFeatureFlags ;
19
14
20
- export const frameYieldMs = 10 ;
21
- export const enableSchedulerDebugging = true ;
15
+ export const enableSchedulerDebugging = false ;
22
16
export const enableProfiling = __DEV__ ;
17
+ export const frameYieldMs = 10 ;
18
+
19
+ export const userBlockingPriorityTimeout = 250 ;
20
+ export const normalPriorityTimeout = 5000 ;
21
+ export const lowPriorityTimeout = 10000 ;
You can’t perform that action at this time.
0 commit comments