feat(webkit): roll to r1388 (#4464)
This commit is contained in:
parent
1f5b75273d
commit
ab4a627988
|
|
@ -13,7 +13,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1385",
|
||||
"revision": "1388",
|
||||
"download": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -17,9 +17,7 @@
|
|||
|
||||
import { it, expect } from './fixtures';
|
||||
|
||||
it('should capture local storage', (test, { browserName, platform }) => {
|
||||
test.fixme(browserName === 'webkit' && platform === 'win32');
|
||||
}, async ({ context }) => {
|
||||
it('should capture local storage', async ({ context }) => {
|
||||
const page1 = await context.newPage();
|
||||
await page1.route('**/*', route => {
|
||||
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 }) => {
|
||||
test.fixme(browserName === 'webkit' && platform === 'win32');
|
||||
}, async ({ browser }) => {
|
||||
it('should set local storage', async ({ browser }) => {
|
||||
const context = await browser.newContext({
|
||||
storageState: {
|
||||
origins: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue