Fix CI from stale merge (#34555)

This commit is contained in:
Sebastian "Sebbie" Silbermann
2025-09-23 08:49:16 +02:00
committed by GitHub
parent 720bb13069
commit cad813ac1e
2 changed files with 3 additions and 3 deletions

View File

@@ -2,4 +2,4 @@ import type { PluginOptions } from 
'babel-plugin-react-compiler/dist';
({
  //compilationMode: "all"
} satisfies Partial<PluginOptions>);
} satisfies PluginOptions);

View File

@@ -263,7 +263,7 @@ test('error is displayed when config has validation error', async ({page}) => {
({
compilationMode: "123"
} satisfies Partial<PluginOptions>);`,
} satisfies PluginOptions);`,
showInternals: false,
};
const hash = encodeStore(store);
@@ -293,7 +293,7 @@ test('disableMemoizationForDebugging flag works as expected', async ({
environment: {
disableMemoizationForDebugging: true
}
} satisfies Partial<PluginOptions>);`,
} satisfies PluginOptions);`,
showInternals: false,
};
const hash = encodeStore(store);