@samitouri / QOS-React-2 / commits / de82912e62

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.

Jack Pope committed Dec 20, 2024 at 09:48 UTC de82912e620518d501680bbd93fbb5cc8d134223
2 files changed +2 -2
packages/shared/forks/ReactFeatureFlags.test-renderer.native-fb.js
+1 -1
@@ -68,7 +68,7 @@ export const enableFabricCompleteRootInCommitPhase = false;
68 export const enableSiblingPrerendering = true;
69 export const enableUseResourceEffectHook = true;
70 export const enableHydrationLaneScheduling = true;
71 -export const enableYieldingBeforePassive = true;
71 +export const enableYieldingBeforePassive = false;
72
73 // Flow magic to verify the exports of this file match the original version.
74 ((((null: any): ExportsType): FeatureFlagsType): ExportsType);
packages/shared/forks/ReactFeatureFlags.test-renderer.www.js
+1 -1
@@ -82,7 +82,7 @@ export const enableUseResourceEffectHook = false;
82
83 export const enableHydrationLaneScheduling = true;
84
85 -export const enableYieldingBeforePassive = true;
85 +export const enableYieldingBeforePassive = false;
86
87 // Flow magic to verify the exports of this file match the original version.
88 ((((null: any): ExportsType): FeatureFlagsType): ExportsType);