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:
Jack Pope
2024-12-20 09:48:50 -05:00
committed by GitHub
parent 518d06d26a
commit de82912e62
2 changed files with 2 additions and 2 deletions
@@ -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);