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 1111// Use __VARIANT__ to simulate a GK. The tests will be run twice: once
1212// with the __VARIANT__ set to `true`, and once set to `false`.
1313
14- export const userBlockingPriorityTimeout = 250 ;
15- export const normalPriorityTimeout = 5000 ;
16- export const lowPriorityTimeout = 10000 ;
1714export const enableRequestPaint = __VARIANT__ ;
Original file line number Diff line number Diff line change 1010// $FlowFixMe[cannot-resolve-module]
1111const dynamicFeatureFlags = require ( 'SchedulerFeatureFlags' ) ;
1212
13- export const {
14- userBlockingPriorityTimeout,
15- normalPriorityTimeout,
16- lowPriorityTimeout,
17- enableRequestPaint,
18- } = dynamicFeatureFlags ;
13+ export const { enableRequestPaint} = dynamicFeatureFlags ;
1914
20- export const frameYieldMs = 10 ;
21- export const enableSchedulerDebugging = true ;
15+ export const enableSchedulerDebugging = false ;
2216export 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