From 7d66df9619b2226c37038f9a51222e1e800af536 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 7 Jan 2025 10:32:33 -0800 Subject: [PATCH] test: reenable "return empty content there is no iframe src" in cr and ff --- tests/page/page-set-content.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/page/page-set-content.spec.ts b/tests/page/page-set-content.spec.ts index 4f0c903bfc..27fe18c860 100644 --- a/tests/page/page-set-content.spec.ts +++ b/tests/page/page-set-content.spec.ts @@ -123,8 +123,8 @@ it('content() should throw nice error during navigation', async ({ page, server } }); -it('should return empty content there is no iframe src', async ({ page }) => { - it.fixme(true, 'Hangs in all browsers because there is no utility context'); +it('should return empty content there is no iframe src', async ({ page, browserName }) => { + it.fixme(browserName === 'webkit', 'Hangs in all browsers because there is no utility context'); await page.setContent(``); expect(page.frames().length).toBe(2); expect(await page.frames()[1].content()).toBe('');