feat(webkit): roll to r1388 (#4464)
This commit is contained in:
parent
1f5b75273d
commit
ab4a627988
|
|
@ -13,7 +13,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1385",
|
"revision": "1388",
|
||||||
"download": true
|
"download": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -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: [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue