@wdio/sauce-service 9.1.0 → 9.1.2
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 +6 -6
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ Instructions on how to install `WebdriverIO` can be found [here.](https://webdri
|
|
|
28
28
|
|
|
29
29
|
## Configuration
|
|
30
30
|
|
|
31
|
-
To use the service for the Virtual Desktop/Emulator/Simulator Machine and Real Device cloud you need to set `user` and `key` in your `wdio.conf.js` file. It will automatically use Sauce Labs to run your integration tests. If you run your tests on Sauce Labs you can specify the region you want to run your tests in via the `region` property. Available short handles for regions are `us` (default)
|
|
31
|
+
To use the service for the Virtual Desktop/Emulator/Simulator Machine and Real Device cloud you need to set `user` and `key` in your `wdio.conf.js` file. It will automatically use Sauce Labs to run your integration tests. If you run your tests on Sauce Labs you can specify the region you want to run your tests in via the `region` property. Available short handles for regions are `us` (default) and `eu`. These regions are used for the Sauce Labs VM cloud and the Sauce Labs Real Device Cloud. If you don't provide the region, it defaults to `us`.
|
|
32
32
|
|
|
33
|
-
If you want WebdriverIO to automatically spin up a [Sauce Connect](https://wiki.saucelabs.com/display/DOCS/Sauce+Connect+Proxy) tunnel, you need to set `sauceConnect: true`. If you would like to change the data center to EU add `region:'eu'`
|
|
33
|
+
If you want WebdriverIO to automatically spin up a [Sauce Connect](https://wiki.saucelabs.com/display/DOCS/Sauce+Connect+Proxy) tunnel, you need to set `sauceConnect: true`. If you would like to change the data center to EU add `region:'eu'` as US data center is set as default.
|
|
34
34
|
|
|
35
35
|
```js
|
|
36
36
|
// wdio.conf.js
|
|
@@ -38,7 +38,7 @@ export const config = {
|
|
|
38
38
|
// ...
|
|
39
39
|
user: process.env.SAUCE_USERNAME,
|
|
40
40
|
key: process.env.SAUCE_ACCESS_KEY,
|
|
41
|
-
region: 'us', // or 'eu'
|
|
41
|
+
region: 'us', // or 'eu'
|
|
42
42
|
services: [
|
|
43
43
|
['sauce', {
|
|
44
44
|
sauceConnect: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/sauce-service",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.2",
|
|
4
4
|
"description": "WebdriverIO service that provides a better integration into Sauce Labs",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-sauce-service",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"typeScriptVersion": "3.8.3",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@wdio/logger": "9.1.0",
|
|
36
|
-
"@wdio/types": "9.1.
|
|
37
|
-
"@wdio/utils": "9.1.
|
|
36
|
+
"@wdio/types": "9.1.2",
|
|
37
|
+
"@wdio/utils": "9.1.2",
|
|
38
38
|
"ip": "^2.0.1",
|
|
39
39
|
"saucelabs": "8.0.0",
|
|
40
|
-
"webdriverio": "9.1.
|
|
40
|
+
"webdriverio": "9.1.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/ip": "^1.1.0",
|
|
44
|
-
"@wdio/globals": "9.1.
|
|
44
|
+
"@wdio/globals": "9.1.2"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e009b5102f9f98b99fa62df870ce7f3f5bc1b99a"
|
|
50
50
|
}
|