From a04610153bc5d4c9a776b8db6e17b1669499233e Mon Sep 17 00:00:00 2001 From: mahula Date: Mon, 18 Jul 2022 22:28:31 +0200 Subject: [PATCH] set Playwright test to utilize webkit --- e2e-tests/playwright/tests/playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e-tests/playwright/tests/playwright.config.ts b/e2e-tests/playwright/tests/playwright.config.ts index 073c34b06..84b010dc5 100644 --- a/e2e-tests/playwright/tests/playwright.config.ts +++ b/e2e-tests/playwright/tests/playwright.config.ts @@ -14,6 +14,8 @@ const config: PlaywrightTestConfig = { viewport: { width: 1280, height: 720 }, use: { baseURL: process.env.URL || 'http://localhost:3000', + browserName: 'webkit', + }, }; export default config;