@wdio/sauce-service 8.40.2 → 8.40.5
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/build/launcher.js +2 -2
- package/package.json +8 -8
package/build/launcher.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { performance, PerformanceObserver } from 'node:perf_hooks';
|
|
2
|
-
import ip from '
|
|
2
|
+
import { ip } from 'address';
|
|
3
3
|
import { default as SauceLabs } from 'saucelabs';
|
|
4
4
|
import logger from '@wdio/logger';
|
|
5
5
|
import { makeCapabilityFactory } from './utils.js';
|
|
@@ -32,7 +32,7 @@ export default class SauceLauncher {
|
|
|
32
32
|
noAutodetect: true,
|
|
33
33
|
tunnelIdentifier: sauceConnectTunnelIdentifier,
|
|
34
34
|
...this._options.sauceConnectOpts,
|
|
35
|
-
noSslBumpDomains: `127.0.0.1,localhost,${ip
|
|
35
|
+
noSslBumpDomains: `127.0.0.1,localhost,${ip()}` + (this._options.sauceConnectOpts?.noSslBumpDomains
|
|
36
36
|
? `,${this._options.sauceConnectOpts.noSslBumpDomains}`
|
|
37
37
|
: ''),
|
|
38
38
|
logger: this._options.sauceConnectOpts?.logger || ((output) => log.debug(`Sauce Connect Log: ${output}`)),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/sauce-service",
|
|
3
|
-
"version": "8.40.
|
|
3
|
+
"version": "8.40.5",
|
|
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",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"typeScriptVersion": "3.8.3",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@wdio/logger": "8.38.0",
|
|
34
|
-
"@wdio/types": "8.
|
|
35
|
-
"@wdio/utils": "8.40.
|
|
36
|
-
"
|
|
37
|
-
"saucelabs": "
|
|
38
|
-
"webdriverio": "8.40.
|
|
34
|
+
"@wdio/types": "8.40.3",
|
|
35
|
+
"@wdio/utils": "8.40.3",
|
|
36
|
+
"address": "^2.0.3",
|
|
37
|
+
"saucelabs": "8.0.0",
|
|
38
|
+
"webdriverio": "8.40.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/ip": "^1.1.0",
|
|
42
|
-
"@wdio/globals": "8.40.
|
|
42
|
+
"@wdio/globals": "8.40.5"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "c94fcc0cffccc8cf3a217bc7b77794f988df8e11"
|
|
48
48
|
}
|