From cad813ac1ed5c04c6ccb390a3bdf5fedbbacaa45 Mon Sep 17 00:00:00 2001 From: "Sebastian \"Sebbie\" Silbermann" Date: Tue, 23 Sep 2025 08:49:16 +0200 Subject: [PATCH] Fix CI from stale merge (#34555) --- .../e2e/__snapshots__/page.spec.ts/default-config.txt | 2 +- compiler/apps/playground/__tests__/e2e/page.spec.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt b/compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt index 383eb7e71e67f..a012d051ec040 100644 --- a/compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt +++ b/compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt @@ -2,4 +2,4 @@ import type { PluginOptions } from  'babel-plugin-react-compiler/dist'; ({   //compilationMode: "all" -} satisfies Partial); \ No newline at end of file +} satisfies PluginOptions); \ No newline at end of file diff --git a/compiler/apps/playground/__tests__/e2e/page.spec.ts b/compiler/apps/playground/__tests__/e2e/page.spec.ts index a904923b4228b..4a10e8603bb28 100644 --- a/compiler/apps/playground/__tests__/e2e/page.spec.ts +++ b/compiler/apps/playground/__tests__/e2e/page.spec.ts @@ -263,7 +263,7 @@ test('error is displayed when config has validation error', async ({page}) => { ({ compilationMode: "123" -} satisfies Partial);`, +} satisfies PluginOptions);`, showInternals: false, }; const hash = encodeStore(store); @@ -293,7 +293,7 @@ test('disableMemoizationForDebugging flag works as expected', async ({ environment: { disableMemoizationForDebugging: true } -} satisfies Partial);`, +} satisfies PluginOptions);`, showInternals: false, }; const hash = encodeStore(store);