From ccb332ebd16168e456a2bb36fc92a7e9fd360414 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 25 Mar 2024 19:44:36 +0100 Subject: [PATCH] Update tests/page/page-network-response.spec.ts Signed-off-by: Max Schmitt --- tests/page/page-network-response.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/page/page-network-response.spec.ts b/tests/page/page-network-response.spec.ts index a4754f5f6e..04bae54c49 100644 --- a/tests/page/page-network-response.spec.ts +++ b/tests/page/page-network-response.spec.ts @@ -400,9 +400,8 @@ it('should bypass disk cache when page interception is enabled', async ({ page, } }); -it('should bypass disk cache when context interception is enabled', async ({ page, server, browserName }) => { +it('should bypass disk cache when context interception is enabled', async ({ page, server }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/30000' }); - it.fixme(browserName === 'firefox', 'Returns cached response.'); await page.context().route('**/api*', route => route.continue()); await page.goto(server.PREFIX + '/frames/one-frame.html'); {