@wdio/spec-reporter 9.13.0 → 9.14.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/README.md CHANGED
@@ -134,12 +134,12 @@ With it set to `false` you will see output as:
134
134
  Running: loremipsum (v50) on Windows 10
135
135
  Session ID: foobar
136
136
 
137
- » /foo/bar/loo.e2e.js
137
+ » foo/bar/loo.e2e.js
138
138
  Foo test
139
139
  green ✓ foo
140
140
  green ✓ bar
141
141
 
142
- » /bar/foo/loo.e2e.js
142
+ » bar/foo/loo.e2e.js
143
143
  Bar test
144
144
  green ✓ some test
145
145
  red ✖ a failed test
@@ -151,12 +151,12 @@ and with `true` (default) each line will be prefixed with the preface:
151
151
  [loremipsum 50 Windows 10 #0-0] Running: loremipsum (v50) on Windows 10
152
152
  [loremipsum 50 Windows 10 #0-0] Session ID: foobar
153
153
  [loremipsum 50 Windows 10 #0-0]
154
- [loremipsum 50 Windows 10 #0-0] » /foo/bar/loo.e2e.js
154
+ [loremipsum 50 Windows 10 #0-0] » foo/bar/loo.e2e.js
155
155
  [loremipsum 50 Windows 10 #0-0] Foo test
156
156
  [loremipsum 50 Windows 10 #0-0] green ✓ foo
157
157
  [loremipsum 50 Windows 10 #0-0] green ✓ bar
158
158
  [loremipsum 50 Windows 10 #0-0]
159
- [loremipsum 50 Windows 10 #0-0] » /bar/foo/loo.e2e.js
159
+ [loremipsum 50 Windows 10 #0-0] » bar/foo/loo.e2e.js
160
160
  [loremipsum 50 Windows 10 #0-0] Bar test
161
161
  [loremipsum 50 Windows 10 #0-0] green ✓ some test
162
162
  [loremipsum 50 Windows 10 #0-0] red ✖ a failed test
package/build/index.js CHANGED
@@ -298,7 +298,7 @@ ${prefacedOutput.join("\n")}
298
298
  }
299
299
  const suiteIndent = this.indent(suite.uid);
300
300
  if (suite.file && !specFileReferences.includes(suite.file)) {
301
- output.push(`${suiteIndent}\xBB ${suite.file.replace(process.cwd(), "")}`);
301
+ output.push(`${suiteIndent}\xBB ${suite.file.replace(process.cwd(), "").slice(1)}`);
302
302
  specFileReferences.push(suite.file);
303
303
  }
304
304
  let retryAnnotation = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wdio/spec-reporter",
3
- "version": "9.13.0",
3
+ "version": "9.14.0",
4
4
  "description": "A WebdriverIO plugin to report in spec style",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-spec-reporter",
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "typeScriptVersion": "3.8.3",
33
33
  "dependencies": {
34
- "@wdio/reporter": "9.13.0",
35
- "@wdio/types": "9.13.0",
34
+ "@wdio/reporter": "9.14.0",
35
+ "@wdio/types": "9.14.0",
36
36
  "chalk": "^5.1.2",
37
37
  "easy-table": "^1.2.0",
38
38
  "pretty-ms": "^9.0.0"
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "8eb40a63ea043e3d6c292087b28a8ad4949484b0"
43
+ "gitHead": "f8e62f63eb087a06556e8c85e042403da0e4485e"
44
44
  }