From 84a1368fa44f3815e96ebadd1dc3bae78c8e3b69 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 17 Mar 2023 12:32:55 +0100 Subject: [PATCH] test: enable XMLHttpRequest upload events test on WK+Windows (#21727) Fixes https://github.com/microsoft/playwright/issues/21489 --- tests/library/capabilities.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index ccdbb9b37f..538bbee1c2 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -217,9 +217,8 @@ it('webkit should define window.safari', async ({ page, server, browserName }) = expect(defined).toBeTruthy(); }); -it('make sure that XMLHttpRequest upload events are emitted correctly', async ({ page, server, browserName, platform }) => { +it('make sure that XMLHttpRequest upload events are emitted correctly', async ({ page, server }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/21489' }); - it.fixme(browserName === 'webkit' && platform === 'win32'); await page.goto(server.EMPTY_PAGE); const events = await page.evaluate(async () => {