From a87b1cfa2bd3e400b36b8fe1f24c1a7f418a20bc Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 22 Jul 2024 12:25:31 -0700 Subject: [PATCH] Roll WebKit to 2049 --- packages/playwright-core/browsers.json | 2 +- tests/library/capabilities.spec.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index 307546cdad..8de841aafa 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -27,7 +27,7 @@ }, { "name": "webkit", - "revision": "2048", + "revision": "2049", "installByDefault": true, "revisionOverrides": { "mac10.14": "1446", diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index 47e022cd80..bc5fc10cf3 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -19,8 +19,7 @@ import url from 'url'; import { contextTest as it, expect } from '../config/browserTest'; import { hostPlatform } from '../../packages/playwright-core/src/utils/hostPlatform'; -it('SharedArrayBuffer should work @smoke', async function({ contextFactory, httpsServer, browserName }) { - it.fail(browserName === 'webkit', 'no shared array buffer on webkit'); +it('SharedArrayBuffer should work @smoke', async function({ contextFactory, httpsServer }) { const context = await contextFactory({ ignoreHTTPSErrors: true }); const page = await context.newPage(); httpsServer.setRoute('/sharedarraybuffer', (req, res) => {