froth-webdriverio-framework 7.0.22 → 7.0.23

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.
@@ -3,10 +3,10 @@ async function getBSBuildDetails(sessionType, bsUsername, bsPassword) {
3
3
  console.log(`Session type: ${sessionType}`);
4
4
 
5
5
  const basicAuth = btoa(`${bsUsername}:${bsPassword}`);
6
- let buildName = sessionType === 'app-automate'
7
- ? `Mobile_Build-${process.env.FROTH_TESTOPS_BUILD_NAME.trim()}`
8
- : `Web_Build-${process.env.FROTH_TESTOPS_BUILD_NAME.trim()}`;
9
- buildName=buildName.trim().replaceAll(" ","");
6
+ const buildName = sessionType === 'app-automate'
7
+ ? `Mobile_Build-${process.env.FROTH_TESTOPS_BUILD_NAME}`
8
+ : `Web_Build-${process.env.FROTH_TESTOPS_BUILD_NAME}`;
9
+
10
10
  console.log(`BrowserStack build name: ${buildName}`);
11
11
 
12
12
  const url = `https://api.browserstack.com/${sessionType}/builds.json?name=${buildName}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "7.0.22",
3
+ "version": "7.0.23",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",