@samitouri / QOS-React / commits / cad813ac1e

Fix CI from stale merge (#34555)

Sebastian "Sebbie" Silbermann committed Sep 23, 2025 at 08:49 UTC cad813ac1ed5c04c6ccb390a3bdf5fedbbacaa45
2 files changed +3 -3
compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt
+1 -1
@@ -2,4 +2,4 @@ import type { PluginOptions } from 
2 'babel-plugin-react-compiler/dist';
3 ({
4   //compilationMode: "all"
5 -} satisfies Partial<PluginOptions>);
\ No newline at end of file
5 +} satisfies PluginOptions);
\ No newline at end of file
compiler/apps/playground/__tests__/e2e/page.spec.ts
+2 -2
@@ -263,7 +263,7 @@ test('error is displayed when config has validation error', async ({page}) => {
263
264 ({
265 compilationMode: "123"
266 -} satisfies Partial<PluginOptions>);`,
266 +} satisfies PluginOptions);`,
267 showInternals: false,
268 };
269 const hash = encodeStore(store);
@@ -293,7 +293,7 @@ test('disableMemoizationForDebugging flag works as expected', async ({
293 environment: {
294 disableMemoizationForDebugging: true
295 }
296 -} satisfies Partial<PluginOptions>);`,
296 +} satisfies PluginOptions);`,
297 showInternals: false,
298 };
299 const hash = encodeStore(store);