@wdio/runner 8.15.4 → 8.15.7

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.
Files changed (2) hide show
  1. package/build/index.js +1 -1
  2. package/package.json +8 -8
package/build/index.js CHANGED
@@ -306,7 +306,7 @@ export default class Runner extends EventEmitter {
306
306
  /**
307
307
  * don't write to file if no logs were captured
308
308
  */
309
- if (!logs || logs.length === 0) {
309
+ if (!Array.isArray(logs) || logs.length === 0) {
310
310
  return;
311
311
  }
312
312
  const stringLogs = logs.map((log) => JSON.stringify(log)).join('\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/runner",
3
- "version": "8.15.4",
3
+ "version": "8.15.7",
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",
@@ -30,19 +30,19 @@
30
30
  "typeScriptVersion": "3.8.3",
31
31
  "dependencies": {
32
32
  "@types/node": "^20.1.0",
33
- "@wdio/config": "8.15.4",
34
- "@wdio/globals": "8.15.4",
33
+ "@wdio/config": "8.15.7",
34
+ "@wdio/globals": "8.15.7",
35
35
  "@wdio/logger": "8.11.0",
36
- "@wdio/types": "8.15.0",
37
- "@wdio/utils": "8.15.4",
36
+ "@wdio/types": "8.15.7",
37
+ "@wdio/utils": "8.15.7",
38
38
  "deepmerge-ts": "^5.0.0",
39
39
  "expect-webdriverio": "^4.2.5",
40
40
  "gaze": "^1.1.2",
41
- "webdriver": "8.15.4",
42
- "webdriverio": "8.15.4"
41
+ "webdriver": "8.15.7",
42
+ "webdriverio": "8.15.7"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "528fe3a1d3d37a44f58882a65170971f38461add"
47
+ "gitHead": "24d8f0dccf54e6e19779094d73eb90ae9086ee86"
48
48
  }