chore: disable popover test on Darwin 13.7 WebKit (#34466)
This commit is contained in:
parent
bbd55587e4
commit
c44590aa5b
|
|
@ -1676,7 +1676,8 @@ test('should show only one pointer with multilevel iframes', async ({ page, runA
|
||||||
await expect.soft(snapshotFrame.frameLocator('iframe').frameLocator('iframe').locator('x-pw-pointer')).toBeVisible();
|
await expect.soft(snapshotFrame.frameLocator('iframe').frameLocator('iframe').locator('x-pw-pointer')).toBeVisible();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should show a popover', async ({ runAndTrace, page, server }) => {
|
test('should show a popover', async ({ runAndTrace, page, server, platform, browserName, macVersion }) => {
|
||||||
|
test.skip(platform === 'darwin' && macVersion === 13 && browserName === 'webkit', 'WebKit on macOS 13.7 reliably fails on this test for some reason');
|
||||||
const traceViewer = await runAndTrace(async () => {
|
const traceViewer = await runAndTrace(async () => {
|
||||||
await page.setContent(`
|
await page.setContent(`
|
||||||
<button popovertarget="pop">Click me</button>
|
<button popovertarget="pop">Click me</button>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue