mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Turn off enableYieldingBeforePassive in internal test renderers (#31863)
https://github.com/facebook/react/pull/31785 turned on `enableYieldingBeforePassive` for the internal test renderer builds. We have some failing tests on the RN side blocking the sync so lets turn these off for now.
This commit is contained in:
@@ -68,7 +68,7 @@ export const enableFabricCompleteRootInCommitPhase = false;
|
||||
export const enableSiblingPrerendering = true;
|
||||
export const enableUseResourceEffectHook = true;
|
||||
export const enableHydrationLaneScheduling = true;
|
||||
export const enableYieldingBeforePassive = true;
|
||||
export const enableYieldingBeforePassive = false;
|
||||
|
||||
// Flow magic to verify the exports of this file match the original version.
|
||||
((((null: any): ExportsType): FeatureFlagsType): ExportsType);
|
||||
|
||||
@@ -82,7 +82,7 @@ export const enableUseResourceEffectHook = false;
|
||||
|
||||
export const enableHydrationLaneScheduling = true;
|
||||
|
||||
export const enableYieldingBeforePassive = true;
|
||||
export const enableYieldingBeforePassive = false;
|
||||
|
||||
// Flow magic to verify the exports of this file match the original version.
|
||||
((((null: any): ExportsType): FeatureFlagsType): ExportsType);
|
||||
|
||||
Reference in New Issue
Block a user