froth-webdriverio-framework 3.0.40 → 3.0.41

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.
@@ -18,12 +18,11 @@ async function callapi(method, api_url, queryParams, payloaddetails, authenticat
18
18
  method: method,
19
19
  headers: await formheaders(authentication, headers)
20
20
  };
21
- console.log("options:", JSON.stringify(options, null, 2));
22
21
  // Only add the body if the method is not GET or HEAD
23
22
  if (method !== 'GET' && method !== 'HEAD') {
24
23
  options.body = formData;
25
24
  }
26
-
25
+ console.log("options:", JSON.stringify(options, null, 2));
27
26
  // Send the request
28
27
  response = await fetch(api_url, options);
29
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "3.0.40",
3
+ "version": "3.0.41",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",