Skip to content

Commit f026e4f

Browse files
authored
test: skip pickLocator cancellation test on chromium headed macOS 14 (microsoft#39642)
1 parent d26a26d commit f026e4f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/library/inspector/recorder-api.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ test('closing page should cancel ongoing pickLocator', async ({ page }) => {
181181
expect(await pickPromise).toContain('Target page, context or browser has been closed');
182182
});
183183

184-
test('page2.pickLocator() should cancel page1.pickLocator()', async ({ page, context }) => {
184+
test('page2.pickLocator() should cancel page1.pickLocator()', async ({ page, context, browserName, headless, isMac, macVersion }) => {
185+
test.fixme(browserName === 'chromium' && !headless && isMac && macVersion === 14, 'times out on chromium headed on macOS 14');
185186
const pick1Promise = page.pickLocator().catch(e => e.message);
186187

187188
const page2 = await context.newPage();

0 commit comments

Comments
 (0)