feat(webkit): roll to r1388 (#4464)

This commit is contained in:
Pavel Feldman 2020-11-17 08:09:26 -08:00 committed by GitHub
parent 1f5b75273d
commit ab4a627988
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 7 deletions

View file

@ -13,7 +13,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1385", "revision": "1388",
"download": true "download": true
} }
] ]

View file

@ -17,9 +17,7 @@
import { it, expect } from './fixtures'; import { it, expect } from './fixtures';
it('should capture local storage', (test, { browserName, platform }) => { it('should capture local storage', async ({ context }) => {
test.fixme(browserName === 'webkit' && platform === 'win32');
}, async ({ context }) => {
const page1 = await context.newPage(); const page1 = await context.newPage();
await page1.route('**/*', route => { await page1.route('**/*', route => {
route.fulfill({ body: '<html></html>' }).catch(() => {}); route.fulfill({ body: '<html></html>' }).catch(() => {});
@ -48,9 +46,7 @@ it('should capture local storage', (test, { browserName, platform }) => {
}]); }]);
}); });
it('should set local storage', (test, { browserName, platform }) => { it('should set local storage', async ({ browser }) => {
test.fixme(browserName === 'webkit' && platform === 'win32');
}, async ({ browser }) => {
const context = await browser.newContext({ const context = await browser.newContext({
storageState: { storageState: {
origins: [ origins: [