test: enable XMLHttpRequest upload events test on WK+Windows (#21727)

Fixes https://github.com/microsoft/playwright/issues/21489
This commit is contained in:
Max Schmitt 2023-03-17 12:32:55 +01:00 committed by GitHub
parent f192a74c5d
commit 84a1368fa4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 () => {