From e69355a6e20d2d479bed9abf669b9945b3b56999 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 25 Mar 2024 19:35:44 +0100 Subject: [PATCH] test: skip 'should fulfill with gzip and readback' on Electron and Android (#30103) --- tests/page/page-request-fulfill.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/page/page-request-fulfill.spec.ts b/tests/page/page-request-fulfill.spec.ts index 9a568e8369..4a67b4353c 100644 --- a/tests/page/page-request-fulfill.spec.ts +++ b/tests/page/page-request-fulfill.spec.ts @@ -441,7 +441,9 @@ it('should fulfill json', async ({ page, server }) => { it('should fulfill with gzip and readback', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/29261' }, -}, async ({ page, server }) => { +}, async ({ page, server, isAndroid, isElectron }) => { + it.skip(isAndroid, 'The internal Android localhost (10.0.0.2) != the localhost on the host'); + it.fixme(isElectron, 'error: Browser context management is not supported.'); server.enableGzip('/one-style.html'); await page.route('**/one-style.html', async route => { const response = await route.fetch();