From ce1c7e185f1cc2a405709f5c691f009c4a58db4b Mon Sep 17 00:00:00 2001 From: Ricky Hanlon Date: Thu, 25 Jan 2024 23:11:40 -0500 Subject: [PATCH] Remove duplicate dynamic scheduler flags --- scripts/jest/setupTests.www.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/jest/setupTests.www.js b/scripts/jest/setupTests.www.js index 2fc6da49d55ed..69870ad02a5fe 100644 --- a/scripts/jest/setupTests.www.js +++ b/scripts/jest/setupTests.www.js @@ -30,9 +30,6 @@ jest.mock('scheduler/src/SchedulerFeatureFlags', () => { // These flags are not a dynamic on www, but we still want to run // tests in both versions. - actual.enableIsInputPending = __VARIANT__; - actual.enableIsInputPendingContinuous = __VARIANT__; - actual.enableProfiling = __VARIANT__; actual.enableSchedulerDebugging = __VARIANT__; return actual;