test: skip 'propagate headers cross origin redirect after interception' on Android (#35556)

This commit is contained in:
Max Schmitt 2025-04-09 16:20:13 +01:00 committed by GitHub
parent 22e134e280
commit 01282e9462
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -767,7 +767,9 @@ it('propagate headers cross origin redirect after interception', {
{ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32045' },
{ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/35154' },
]
}, async ({ page, server, browserName }) => {
}, async ({ page, server, browserName, isAndroid }) => {
it.skip(isAndroid, 'No cross-process on Android');
await page.goto(server.PREFIX + '/empty.html');
let resolve;
const serverRequestPromise = new Promise<http.IncomingMessage>(f => resolve = f);