File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/compass-e2e-tests/helpers Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ export const SKIP_NATIVE_MODULE_REBUILD =
8282export const DISABLE_START_STOP = process . argv . includes ( '--disable-start-stop' ) ;
8383export const MOCHA_BAIL = process . argv . includes ( '--bail' ) ;
8484
85- export const COMPASS_WEB_BROWSER_NAME = process . env . BROWSER_NAME ?? 'chrome' ;
85+ export const COMPASS_WEB_BROWSER_NAME =
86+ process . env . COMPASS_WEB_BROWSER_NAME ?? 'chrome' ;
8687// https://webdriver.io/docs/driverbinaries/
8788//
8889// If you leave out browserVersion it will try and find the browser binary on
@@ -97,7 +98,7 @@ export const COMPASS_WEB_BROWSER_NAME = process.env.BROWSER_NAME ?? 'chrome';
9798// NOTE: The version of chromedriver or geckodriver in play might also be
9899// relevant.
99100export const COMPASS_WEB_BROWSER_VERSION =
100- process . env . BROWSER_VERSION === 'unset'
101+ process . env . COMPASS_WEB_BROWSER_VERSION === 'unset'
101102 ? undefined
102103 : process . env . BROWSER_VERSION ?? 'latest' ;
103104export const COMPASS_WEB_SANDBOX_URL = 'http://localhost:7777' ;
You can’t perform that action at this time.
0 commit comments