Hardcode disableIEWorkarounds for www (#28811)

This has landed and is true everywhere, but let's keep the flag until it
lands in the stable release.
This commit is contained in:
Ricky
2024-04-10 11:14:33 -04:00
committed by GitHub
parent 2243b40aba
commit 84cb3b4cb2
3 changed files with 6 additions and 2 deletions

View File

@@ -15,6 +15,11 @@ jest.mock('shared/ReactFeatureFlags', () => {
// code live.
actual.disableInputAttributeSyncing = __VARIANT__;
// This is hardcoded to true for the next release,
// but still run the tests against both variants until
// we remove the flag.
actual.disableIEWorkarounds = __VARIANT__;
return actual;
});