From 4d4a5a399390f09b727ab270494c65734c2dc726 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 17 Dec 2019 18:01:24 -0800 Subject: [PATCH] test: normalize browser executable path variables --- test/playwright.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/playwright.spec.js b/test/playwright.spec.js index c82f07e311..e1c1b003d2 100644 --- a/test/playwright.spec.js +++ b/test/playwright.spec.js @@ -42,9 +42,9 @@ module.exports.addTests = ({testRunner, product, playwrightPath}) => { const slowMo = parseInt((process.env.SLOW_MO || '0').trim(), 10); const executablePath = { - 'Chromium': process.env.CHROME, - 'Firefox': process.env.FFOX, - 'WebKit': process.env.WEBKIT_PATH, + 'Chromium': process.env.CH_PATH, + 'Firefox': process.env.FF_PATH, + 'WebKit': process.env.WK_PATH, }[product]; const defaultBrowserOptions = { handleSIGINT: false,