mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-05 19:04:43 +03:00
test: mark 'should fulfill with multiple set-cookie' as fixme on Electron
This commit is contained in:
parent
cfe75fc755
commit
94680a702d
@ -249,7 +249,8 @@ it('should fetch original request and fulfill', async ({ page, server, isElectro
|
||||
expect(await page.title()).toEqual('Woof-Woof');
|
||||
});
|
||||
|
||||
it('should fulfill with multiple set-cookie', async ({ page, server, browserName }) => {
|
||||
it('should fulfill with multiple set-cookie', async ({ page, server, browserName, isElectron }) => {
|
||||
it.fixme(isElectron, 'Electron 14+ is required');
|
||||
it.fail(browserName === 'webkit', 'Response contained invalid HTTP headers');
|
||||
const cookies = ['a=b', 'c=d'];
|
||||
await page.route('**/empty.html', async route => {
|
||||
|
Loading…
Reference in New Issue
Block a user