From f56726759bce889738c727d5485e6926bbf3104a Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 17 Dec 2019 18:07:01 -0800 Subject: [PATCH] test: normalize browser executable path variables (#287) --- 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..e375f2a742 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.CRPATH, + 'Firefox': process.env.FFPATH, + 'WebKit': process.env.WKPATH, }[product]; const defaultBrowserOptions = { handleSIGINT: false,