Skip to content

Commit be40476

Browse files
authored
test(recorder): skip flaky CDP eval test on macOS < 15 (#36891)
1 parent cb9ed26 commit be40476

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/library/inspector/cli-codegen-2.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ var page1 = await context.NewPageAsync();`);
9090
await page.CloseAsync();`);
9191
});
9292

93-
test('should not lead to an error if html gets clicked', async ({ openRecorder }) => {
93+
test('should not lead to an error if html gets clicked', async ({ openRecorder, platform, macVersion }) => {
94+
test.skip(platform === 'darwin' && macVersion < 15, 'recorder.page.evaluate hangs on CDP layer for some reason on macOS 14.');
95+
9496
const { page, recorder } = await openRecorder();
9597

9698
await recorder.setContentAndWait('');

0 commit comments

Comments
 (0)