@testim/testim-cli 3.246.0 → 3.249.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -536,13 +536,11 @@ function buildSeleniumOptions(browserOptions, testName, testRunConfig, gridInfo,
536
536
  );
537
537
 
538
538
  let predefinedTestimExtension = null;
539
- if (!browserOptions.ext && _.endsWith(gridInfo.host, '.testim.io') && !browserOptions.canary && browserOptions.mode === CLI_MODE.EXTENSION) {
539
+ if (!browserOptions.ext && !browserOptions.extensionPath && _.endsWith(gridInfo.host, '.testim.io') && !browserOptions.canary && browserOptions.mode === CLI_MODE.EXTENSION) {
540
540
  if (browser === 'chrome') {
541
541
  predefinedTestimExtension = '/opt/testim-headless';
542
542
  } else if (browser === 'edge-chromium') {
543
543
  predefinedTestimExtension = 'C:/selenium/testim-headless';
544
- } else if (browser === 'firefox') {
545
- predefinedTestimExtension = '/opt/testim-firefox-profile';
546
544
  }
547
545
  }
548
546