@wdio/runner 8.0.0-alpha.508 → 8.0.0-alpha.516

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 CHANGED
@@ -140,7 +140,7 @@ export default class BaseReporter {
140
140
  *
141
141
  * ```js
142
142
  * import MyCustomReporter from '/some/path/MyCustomReporter.js'
143
- * exports.config
143
+ * export const config = {
144
144
  * //...
145
145
  * reporters: [
146
146
  * MyCustomReporter, // or
@@ -164,7 +164,7 @@ export default class BaseReporter {
164
164
  * check if reporter is a node package, e.g. wdio-dot reporter
165
165
  *
166
166
  * ```js
167
- * exports.config
167
+ * export const config = {
168
168
  * //...
169
169
  * reporters: [
170
170
  * 'dot', // or
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/runner",
3
- "version": "8.0.0-alpha.508+2d9d5b271",
3
+ "version": "8.0.0-alpha.516+ef18eb180",
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",
@@ -26,19 +26,19 @@
26
26
  "types": "./build/index.d.ts",
27
27
  "typeScriptVersion": "3.8.3",
28
28
  "dependencies": {
29
- "@wdio/config": "8.0.0-alpha.508+2d9d5b271",
30
- "@wdio/globals": "8.0.0-alpha.508+2d9d5b271",
31
- "@wdio/logger": "8.0.0-alpha.508+2d9d5b271",
32
- "@wdio/types": "8.0.0-alpha.508+2d9d5b271",
33
- "@wdio/utils": "8.0.0-alpha.508+2d9d5b271",
29
+ "@wdio/config": "8.0.0-alpha.516+ef18eb180",
30
+ "@wdio/globals": "8.0.0-alpha.516+ef18eb180",
31
+ "@wdio/logger": "8.0.0-alpha.516+ef18eb180",
32
+ "@wdio/types": "8.0.0-alpha.516+ef18eb180",
33
+ "@wdio/utils": "8.0.0-alpha.516+ef18eb180",
34
34
  "deepmerge-ts": "^4.2.2",
35
35
  "expect-webdriverio": "^4.0.0-alpha.3",
36
36
  "gaze": "^1.1.2",
37
- "webdriver": "8.0.0-alpha.508+2d9d5b271",
38
- "webdriverio": "8.0.0-alpha.508+2d9d5b271"
37
+ "webdriver": "8.0.0-alpha.516+ef18eb180",
38
+ "webdriverio": "8.0.0-alpha.516+ef18eb180"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "2d9d5b2719056b8772d690d42656ab9e7c12d715"
43
+ "gitHead": "ef18eb180b61077d44a307c0410593930101e842"
44
44
  }