froth-webdriverio-framework 7.0.24 → 7.0.25

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.
@@ -1,4 +1,4 @@
1
- const aes=require('./aesEncryptionDecryption')
1
+ const aes = require('./aesEncryptionDecryption')
2
2
  /* =========================================================
3
3
  Execution / Script API Helpers (Normalized)
4
4
  ========================================================= */
@@ -46,17 +46,19 @@ async function getExecuitonDetails(frothUrl, token, id) {
46
46
  method: 'GET',
47
47
  headers: DEFAULT_HEADERS(token)
48
48
  });
49
-
50
49
 
51
- let data = await handleResponse(response, 'getExecuitonDetails');
52
- // let responseData = await response.json()
50
+ const data = await handleResponse(response, 'getExecuitonDetails');
51
+ if (!data) return null;
53
52
 
54
- // data = await aes.decrpytData(data.data)
55
- // console.log("after decrypting",data)
53
+ // let data = await handleResponse(response, 'getExecuitonDetails');
54
+ // // let responseData = await response.json()
56
55
 
57
- data = JSON.parse(data)
58
- // console.log("json parsing",data)
59
- if (!data) return null;
56
+ // data = await aes.decrpytData(data.data)
57
+ // // console.log("after decrypting",data)
58
+
59
+ // data = JSON.parse(data)
60
+ // // console.log("json parsing",data)
61
+ // if (!data) return null;
60
62
 
61
63
  const jsondata = {
62
64
  automation_suite_id: data?.automation_suite_details?.id ?? null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "7.0.24",
3
+ "version": "7.0.25",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",