test: skip 'should fulfill with gzip and readback' on Electron and Android (#30103)

This commit is contained in:
Max Schmitt 2024-03-25 19:35:44 +01:00 committed by GitHub
parent 2e8db67f07
commit e69355a6e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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();