@wdio/runner 8.2.2 → 8.2.3
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/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/package.json +7 -7
package/build/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export default class Runner extends EventEmitter {
|
|
|
20
20
|
* @param {Object} args config arguments passed into worker process
|
|
21
21
|
* @param {String[]} specs list of spec files to run
|
|
22
22
|
* @param {Object} caps capabilities to run session with
|
|
23
|
-
* @param {String} configFile
|
|
23
|
+
* @param {String} configFile path to config file to get config from
|
|
24
24
|
* @param {Number} retries number of retries remaining
|
|
25
25
|
* @return {Promise} resolves in number of failures for testrun
|
|
26
26
|
*/
|
package/build/index.js
CHANGED
|
@@ -29,7 +29,7 @@ export default class Runner extends EventEmitter {
|
|
|
29
29
|
* @param {Object} args config arguments passed into worker process
|
|
30
30
|
* @param {String[]} specs list of spec files to run
|
|
31
31
|
* @param {Object} caps capabilities to run session with
|
|
32
|
-
* @param {String} configFile
|
|
32
|
+
* @param {String} configFile path to config file to get config from
|
|
33
33
|
* @param {Number} retries number of retries remaining
|
|
34
34
|
* @return {Promise} resolves in number of failures for testrun
|
|
35
35
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/runner",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.3",
|
|
4
4
|
"description": "A WebdriverIO service that runs tests in arbitrary environments",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-runner",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"typeScriptVersion": "3.8.3",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@types/node": "^18.0.0",
|
|
30
|
-
"@wdio/config": "8.2.
|
|
31
|
-
"@wdio/globals": "8.2.
|
|
30
|
+
"@wdio/config": "8.2.3",
|
|
31
|
+
"@wdio/globals": "8.2.3",
|
|
32
32
|
"@wdio/logger": "8.1.0",
|
|
33
33
|
"@wdio/types": "8.1.2",
|
|
34
|
-
"@wdio/utils": "8.2.
|
|
34
|
+
"@wdio/utils": "8.2.3",
|
|
35
35
|
"deepmerge-ts": "^4.2.2",
|
|
36
36
|
"expect-webdriverio": "^4.0.1",
|
|
37
37
|
"gaze": "^1.1.2",
|
|
38
|
-
"webdriver": "8.2.
|
|
39
|
-
"webdriverio": "8.2.
|
|
38
|
+
"webdriver": "8.2.3",
|
|
39
|
+
"webdriverio": "8.2.3"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "a2b32de5459e815ff2ca6db923386d345acdc084"
|
|
45
45
|
}
|