@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.
- package/README.md +3 -3
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
3
|
+
"version": "7.19.0",
|
|
4
4
|
"description": "WebdriverIO service that provides a better integration into Sauce Labs",
|
|
5
|
-
"author": "Christian Bromann <
|
|
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.
|
|
28
|
-
"@wdio/types": "7.
|
|
29
|
-
"@wdio/utils": "7.
|
|
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.
|
|
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": "
|
|
40
|
+
"gitHead": "a17ba0237dcbafa8f0215534c64ff9634caf4b43"
|
|
41
41
|
}
|