@wdio/junit-reporter 9.1.3 → 9.2.14

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 +4 -4
package/build/index.js CHANGED
@@ -21,7 +21,7 @@ var limit = function(rawVal) {
21
21
  return `[base64] ${val.length} bytes`;
22
22
  }
23
23
  if (val.length > STRINGLIMIT) {
24
- return val.substr(0, STRINGTRUNCATE) + ` ... (${val.length - STRINGTRUNCATE} more bytes)`;
24
+ return val.substring(0, STRINGTRUNCATE) + ` ... (${val.length - STRINGTRUNCATE} more bytes)`;
25
25
  }
26
26
  return val;
27
27
  } else if (type === "[object Array]") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/junit-reporter",
3
- "version": "9.1.3",
3
+ "version": "9.2.14",
4
4
  "description": "A WebdriverIO reporter that creates Jenkins compatible XML based JUnit reports",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-junit-reporter",
@@ -35,8 +35,8 @@
35
35
  },
36
36
  "typeScriptVersion": "3.8.3",
37
37
  "dependencies": {
38
- "@wdio/reporter": "9.1.3",
39
- "@wdio/types": "9.1.3",
38
+ "@wdio/reporter": "9.2.14",
39
+ "@wdio/types": "9.2.2",
40
40
  "json-stringify-safe": "^5.0.1",
41
41
  "junit-report-builder": "^5.1.1"
42
42
  },
@@ -46,5 +46,5 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
- "gitHead": "db677c6008e388301aba23f655679f4c5b6ea023"
49
+ "gitHead": "6ba40850cc38dbb9a9622bee11939a19fb45bead"
50
50
  }