@testomatio/reporter 2.0.1-beta.3 → 2.0.1-beta.4
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/lib/xmlReader.js +1 -1
- package/package.json +1 -1
- package/src/xmlReader.js +1 -1
package/lib/xmlReader.js
CHANGED
|
@@ -428,7 +428,7 @@ function reduceTestCases(prev, item) {
|
|
|
428
428
|
testCases
|
|
429
429
|
.filter(t => !!t)
|
|
430
430
|
.forEach(testCaseItem => {
|
|
431
|
-
const file = testCaseItem.file || item.filepath || item.fullname || '';
|
|
431
|
+
const file = testCaseItem.file || item.filepath || item.fullname || item.package || '';
|
|
432
432
|
let stack = '';
|
|
433
433
|
let message = '';
|
|
434
434
|
if (testCaseItem.error)
|
package/package.json
CHANGED
package/src/xmlReader.js
CHANGED
|
@@ -483,7 +483,7 @@ function reduceTestCases(prev, item) {
|
|
|
483
483
|
testCases
|
|
484
484
|
.filter(t => !!t)
|
|
485
485
|
.forEach(testCaseItem => {
|
|
486
|
-
const file = testCaseItem.file || item.filepath || item.fullname || '';
|
|
486
|
+
const file = testCaseItem.file || item.filepath || item.fullname || item.package || '';
|
|
487
487
|
|
|
488
488
|
let stack = '';
|
|
489
489
|
let message = '';
|