@wdio/sauce-service 7.18.1 → 7.19.0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -34,7 +34,7 @@ If you want WebdriverIO to automatically spin up a [Sauce Connect](https://wiki.
34
34
 
35
35
  ```js
36
36
  // wdio.conf.js
37
- export.config = {
37
+ exports.config
38
38
  // ...
39
39
  user: process.env.SAUCE_USERNAME,
40
40
  key: process.env.SAUCE_ACCESS_KEY,
@@ -56,7 +56,7 @@ If you want to use an existing Sauce Connect tunnel you only need to provide, or
56
56
  <!--DOCUSAURUS_CODE_TABS-->
57
57
  <!--Tunnel Identifier-->
58
58
  ```js
59
- export.config = {
59
+ exports.config
60
60
  // ...
61
61
  {
62
62
  browserName: 'chrome',
@@ -77,7 +77,7 @@ export.config = {
77
77
  ```
78
78
  <!--Parent Tunnel-->
79
79
  ```js
80
- export.config = {
80
+ exports.config
81
81
  // ...
82
82
  {
83
83
  browserName: 'chrome',
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@wdio/sauce-service",
3
- "version": "7.18.1",
3
+ "version": "7.19.0",
4
4
  "description": "WebdriverIO service that provides a better integration into Sauce Labs",
5
- "author": "Christian Bromann <christian@saucelabs.com>",
5
+ "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-sauce-service",
7
7
  "license": "MIT",
8
8
  "main": "./build",
@@ -24,11 +24,11 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@types/node": "^17.0.4",
27
- "@wdio/logger": "7.17.3",
28
- "@wdio/types": "7.18.0",
29
- "@wdio/utils": "7.18.0",
27
+ "@wdio/logger": "7.19.0",
28
+ "@wdio/types": "7.19.0",
29
+ "@wdio/utils": "7.19.0",
30
30
  "saucelabs": "^7.1.3",
31
- "webdriverio": "7.18.1"
31
+ "webdriverio": "7.19.0"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@wdio/cli": "^7.0.0"
@@ -37,5 +37,5 @@
37
37
  "access": "public"
38
38
  },
39
39
  "types": "./build/index.d.ts",
40
- "gitHead": "92f073f8d54b51ff7473d2318fcec9927608c7ca"
40
+ "gitHead": "a17ba0237dcbafa8f0215534c64ff9634caf4b43"
41
41
  }