Skip to content

Commit 4502780

Browse files
Merge branch 'master' into OB-2088-git-linking
2 parents 29ef187 + d781aa6 commit 4502780

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

bin/helpers/utils.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,12 @@ exports.setLocalArgs = (bsConfig, args) => {
942942
let local_args = {}
943943
local_args['key'] = bsConfig['auth']['access_key'];
944944
local_args['localIdentifier'] = bsConfig["connection_settings"]["local_identifier"];
945+
if (bsConfig["connection_settings"]["proxyHost"])
946+
local_args['proxyHost'] = bsConfig["connection_settings"]["proxyHost"];
947+
if (bsConfig["connection_settings"]["proxyPort"])
948+
local_args['proxyPort'] = bsConfig["connection_settings"]["proxyPort"];
949+
if (bsConfig["connection_settings"]["useCaCertificate"])
950+
local_args['useCaCertificate'] = bsConfig["connection_settings"]["useCaCertificate"];
945951
local_args['daemon'] = true;
946952
local_args['enable-logging-for-api'] = true
947953
local_args['source'] = `cypress:${usageReporting.cli_version_and_path(bsConfig).version}`;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browserstack-cypress-cli",
3-
"version": "1.25.0",
3+
"version": "1.25.1",
44
"description": "BrowserStack Cypress CLI for Cypress integration with BrowserStack's remote devices.",
55
"main": "index.js",
66
"scripts": {
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"archiver": "5.3.0",
1616
"async": "3.2.3",
17-
"browserstack-local": "1.5.1",
17+
"browserstack-local": "1.5.4",
1818
"chalk": "4.1.2",
1919
"cli-progress": "3.10.0",
2020
"fs-extra": "8.1.0",

0 commit comments

Comments
 (0)