From 36261d4235dab500aede6292e3f41ea9191bc79a Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 11 Oct 2024 00:07:47 +0200 Subject: [PATCH] Update page-goto.spec.ts Signed-off-by: Max Schmitt --- tests/page/page-goto.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/page/page-goto.spec.ts b/tests/page/page-goto.spec.ts index 09c8d17cae..e3ffb1f93c 100644 --- a/tests/page/page-goto.spec.ts +++ b/tests/page/page-goto.spec.ts @@ -258,8 +258,8 @@ it('should work with subframes return 204 with domcontentloaded', async ({ page, await page.goto(server.PREFIX + '/frames/one-frame.html', { waitUntil: 'domcontentloaded' }); }); -it('should fail when server returns 204', async ({ page, server, browserName, isMac }) => { - it.fixme(browserName === 'webkit' && isMac, 'Regressed in https://github.com/microsoft/playwright-browsers/pull/1297'); +it('should fail when server returns 204', async ({ page, server, browserName, isLinux }) => { + it.fixme(browserName === 'webkit' && isLinux, 'Regressed in https://github.com/microsoft/playwright-browsers/pull/1297'); // WebKit just loads an empty page. server.setRoute('/empty.html', (req, res) => { res.statusCode = 204;