Skip to content

Commit 37311e5

Browse files
committed
Fix CI from stale merge
1 parent 720bb13 commit 37311e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import type { PluginOptions } from 
22
'babel-plugin-react-compiler/dist';
33
({
44
  //compilationMode: "all"
5-
} satisfies Partial<PluginOptions>);
5+
} satisfies PluginOptions);

compiler/apps/playground/__tests__/e2e/page.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ test('error is displayed when config has validation error', async ({page}) => {
263263
264264
({
265265
compilationMode: "123"
266-
} satisfies Partial<PluginOptions>);`,
266+
} satisfies PluginOptions);`,
267267
showInternals: false,
268268
};
269269
const hash = encodeStore(store);
@@ -293,7 +293,7 @@ test('disableMemoizationForDebugging flag works as expected', async ({
293293
environment: {
294294
disableMemoizationForDebugging: true
295295
}
296-
} satisfies Partial<PluginOptions>);`,
296+
} satisfies PluginOptions);`,
297297
showInternals: false,
298298
};
299299
const hash = encodeStore(store);

0 commit comments

Comments
 (0)