Update cookies.spec.js

This commit is contained in:
Andrey Lushnikov 2020-02-14 17:47:27 -08:00 committed by GitHub
parent 20e1e73866
commit 8ebba89dcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,7 +206,7 @@ module.exports.describe = function({testRunner, expect, playwright, defaultBrows
expect(cookies[0] && cookies[0].name).toBe(undefined);
}
});
it('should isolate persistent cookies', async({context, server, newContext}) => {
it.skip(WEBKIT)('should isolate persistent cookies', async({context, server, newContext}) => {
server.setRoute('/setcookie.html', (req, res) => {
res.setHeader('Set-Cookie', 'persistent=persistent-value; max-age=3600');
res.end();