From 783c53eff205353b76bdcd7ce7a1af5cd443f041 Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Fri, 6 Sep 2024 12:29:09 +0200 Subject: [PATCH 1/2] Remove WebKit workaround for wasm-vips This is no longer needed after PR #665. Resolves: #611. --- tests/e2e/playwright.config.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/e2e/playwright.config.ts b/tests/e2e/playwright.config.ts index 396bc9a7..adade53e 100644 --- a/tests/e2e/playwright.config.ts +++ b/tests/e2e/playwright.config.ts @@ -79,14 +79,6 @@ const config = defineConfig( { name: 'webkit', use: { ...devices[ 'Desktop Safari' ], - launchOptions: { - env: { - ...process.env, - // https://bugs.webkit.org/show_bug.cgi?id=276953 - // eslint-disable-next-line camelcase - JSC_webAssemblyLLIntTiersUpToBBQ: 0, - }, - }, }, }, { From 3a9be3816451414d02a25ff10dab35ce5a9bd427 Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Fri, 6 Sep 2024 12:43:19 +0200 Subject: [PATCH 2/2] Lint fix --- tests/e2e/playwright.config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/e2e/playwright.config.ts b/tests/e2e/playwright.config.ts index adade53e..8ff439b8 100644 --- a/tests/e2e/playwright.config.ts +++ b/tests/e2e/playwright.config.ts @@ -77,9 +77,7 @@ const config = defineConfig( { }, { name: 'webkit', - use: { - ...devices[ 'Desktop Safari' ], - }, + use: { ...devices[ 'Desktop Safari' ] }, }, { name: 'firefox',