From df16f6efb4208a0d9a41db0e40f72573841fbdb6 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 30 Sep 2024 10:30:45 +0200 Subject: [PATCH] test: skip avif test on linux/webkit (#32869) --- tests/library/capabilities.spec.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index bde5a8bd0b..3f71c7db9e 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -402,8 +402,14 @@ it('service worker should register in an iframe', async ({ page, server }) => { expect(response).toBe('responseFromServiceWorker'); }); -it('should be able to render avif images', async ({ page, server, browserName, platform }) => { +it('should be able to render avif images', { + annotation: { + type: 'issue', + description: 'https://github.com/microsoft/playwright/issues/32673', + } +}, async ({ page, server, browserName, platform }) => { it.fixme(browserName === 'webkit' && platform === 'win32'); + it.fixme(browserName === 'webkit' && platform === 'linux', 'https://github.com/microsoft/playwright/issues/32673'); await page.goto(server.EMPTY_PAGE); await page.setContent(``); await expect.poll(() => page.locator('img').boundingBox()).toEqual(expect.objectContaining({