@wdio/runner 7.17.4 → 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/build/reporter.js +2 -2
- package/package.json +9 -9
package/build/reporter.js
CHANGED
|
@@ -116,7 +116,7 @@ class BaseReporter {
|
|
|
116
116
|
*
|
|
117
117
|
* ```js
|
|
118
118
|
* const MyCustomReporter = require('/some/path/MyCustomReporter.js')
|
|
119
|
-
*
|
|
119
|
+
* exports.config
|
|
120
120
|
* //...
|
|
121
121
|
* reporters: [
|
|
122
122
|
* MyCustomReporter, // or
|
|
@@ -138,7 +138,7 @@ class BaseReporter {
|
|
|
138
138
|
* check if reporter is a node package, e.g. wdio-dot reporter
|
|
139
139
|
*
|
|
140
140
|
* ```js
|
|
141
|
-
*
|
|
141
|
+
* exports.config
|
|
142
142
|
* //...
|
|
143
143
|
* reporters: [
|
|
144
144
|
* 'dot', // or
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/runner",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.0",
|
|
4
4
|
"description": "A WebdriverIO service that runs tests in arbitrary environments",
|
|
5
|
-
"author": "Christian Bromann <
|
|
5
|
+
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-runner",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./build/index",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"url": "https://github.com/webdriverio/webdriverio/issues"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@wdio/config": "7.
|
|
26
|
-
"@wdio/logger": "7.
|
|
27
|
-
"@wdio/types": "7.
|
|
28
|
-
"@wdio/utils": "7.
|
|
25
|
+
"@wdio/config": "7.19.0",
|
|
26
|
+
"@wdio/logger": "7.19.0",
|
|
27
|
+
"@wdio/types": "7.19.0",
|
|
28
|
+
"@wdio/utils": "7.19.0",
|
|
29
29
|
"deepmerge": "^4.0.0",
|
|
30
30
|
"gaze": "^1.1.2",
|
|
31
|
-
"webdriver": "7.
|
|
32
|
-
"webdriverio": "7.
|
|
31
|
+
"webdriver": "7.19.0",
|
|
32
|
+
"webdriverio": "7.19.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a17ba0237dcbafa8f0215534c64ff9634caf4b43"
|
|
38
38
|
}
|