Skip to content

Commit ff70a98

Browse files
committed
Merge branch 'master' of github.com:browserstack/browserstack-cypress-cli into HST_722_ats
2 parents 2c429d4 + 174fb9c commit ff70a98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bin/helpers/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ exports.setSystemEnvs = (bsConfig) => {
566566
if (["includeTagsInTestingScope", "excludeTagsInTestingScope"].includes(key))
567567
envKeys[a11y_env_key] = accessibilityOptions[key].join(";")
568568
else if (key === "includeIssueType")
569-
envKeys[a11y_env_key] = JSON.stringify(accessibilityOptions.includeIssueType).replaceAll('"', "")
569+
envKeys[a11y_env_key] = JSON.stringify(accessibilityOptions.includeIssueType).replace(/"/g, "");
570570
else
571571
envKeys[a11y_env_key] = accessibilityOptions[key];
572572
})

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browserstack-cypress-cli",
3-
"version": "1.26.1",
3+
"version": "1.26.2",
44
"description": "BrowserStack Cypress CLI for Cypress integration with BrowserStack's remote devices.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)