test: skip 'should fulfill with gzip and readback' on Electron and Android (#30103)
This commit is contained in:
parent
2e8db67f07
commit
e69355a6e2
|
|
@ -441,7 +441,9 @@ it('should fulfill json', async ({ page, server }) => {
|
||||||
|
|
||||||
it('should fulfill with gzip and readback', {
|
it('should fulfill with gzip and readback', {
|
||||||
annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/29261' },
|
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');
|
server.enableGzip('/one-style.html');
|
||||||
await page.route('**/one-style.html', async route => {
|
await page.route('**/one-style.html', async route => {
|
||||||
const response = await route.fetch();
|
const response = await route.fetch();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue