webdriverio 4.14.3 → 4.14.4

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.
@@ -70,7 +70,7 @@ var detectSeleniumBackend = function detectSeleniumBackend(capabilities) {
70
70
  */
71
71
  return {
72
72
  protocol: 'https',
73
- host: capabilities.host || "ondemand.${getSauceEndpoint(capabilities.region)}",
73
+ host: capabilities.host || `ondemand.${getSauceEndpoint(capabilities.region)}`,
74
74
  port: 443
75
75
  };
76
76
  };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webdriverio",
3
3
  "description": "A Node.js bindings implementation for the W3C WebDriver protocol",
4
- "version": "4.14.3",
4
+ "version": "4.14.4",
5
5
  "homepage": "http://webdriver.io",
6
6
  "author": "Camilo Tapia <camilo.tapia@gmail.com>",
7
7
  "repository": {
@@ -32,7 +32,7 @@
32
32
  import { CommandError } from '../utils/ErrorHandler'
33
33
 
34
34
  let setCookie = function (cookieObj) {
35
- const { name } = cookieObj;
35
+ const { name } = cookieObj
36
36
  /*!
37
37
  * parameter check
38
38
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webdriverio",
3
3
  "description": "A Node.js bindings implementation for the W3C WebDriver protocol",
4
- "version": "4.14.3",
4
+ "version": "4.14.4",
5
5
  "homepage": "http://webdriver.io",
6
6
  "author": "Camilo Tapia <camilo.tapia@gmail.com>",
7
7
  "repository": {