test: skip 'propagate headers cross origin redirect after interception' on Android (#35556)
This commit is contained in:
parent
22e134e280
commit
01282e9462
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue