Skip to content

Commit

Permalink
Enable flag disableClientCache (#28846)
Browse files Browse the repository at this point in the history
Enable flag disableClientCache

Forcing a `__VARIANT__` in the mock file so we keep testing this until
fully removing it.
  • Loading branch information
kassens committed Apr 16, 2024
1 parent 734956a commit 8afa144
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/shared/ReactFeatureFlags.js
Expand Up @@ -159,7 +159,7 @@ export const disableIEWorkarounds = true;
export const enableFilterEmptyStringAttributesDOM = true;

// Disabled caching behavior of `react/cache` in client runtimes.
export const disableClientCache = false;
export const disableClientCache = true;

// Changes Server Components Reconciliation when they have keys
export const enableServerComponentKeys = true;
Expand Down
3 changes: 2 additions & 1 deletion scripts/jest/setupTests.www.js
Expand Up @@ -15,10 +15,11 @@ jest.mock('shared/ReactFeatureFlags', () => {
// code live.
actual.disableInputAttributeSyncing = __VARIANT__;

// This is hardcoded to true for the next release,
// These are hardcoded to true for the next release,
// but still run the tests against both variants until
// we remove the flag.
actual.disableIEWorkarounds = __VARIANT__;
actual.disableClientCache = __VARIANT__;

return actual;
});
Expand Down

0 comments on commit 8afa144

Please sign in to comment.