mirror of
https://github.com/dorny/test-reporter.git
synced 2026-03-21 23:52:12 +01:00
Rebuild the dist/index.js file
This commit is contained in:
parent
f8ae4deee6
commit
5e233102fe
1 changed files with 4 additions and 3 deletions
7
dist/index.js
generated
vendored
7
dist/index.js
generated
vendored
|
|
@ -57248,17 +57248,18 @@ class JestJunitParser {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
getTestCaseResult(test) {
|
getTestCaseResult(test) {
|
||||||
if (test.failure)
|
if (test.failure || test.error)
|
||||||
return 'failed';
|
return 'failed';
|
||||||
if (test.skipped)
|
if (test.skipped)
|
||||||
return 'skipped';
|
return 'skipped';
|
||||||
return 'success';
|
return 'success';
|
||||||
}
|
}
|
||||||
getTestCaseError(tc) {
|
getTestCaseError(tc) {
|
||||||
if (!this.options.parseErrors || !tc.failure) {
|
if (!this.options.parseErrors || !(tc.failure || tc.error)) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
const details = typeof tc.failure[0] === 'string' ? tc.failure[0] : tc.failure[0]['_'];
|
const message = tc.failure ? tc.failure[0] : tc.error ? tc.error[0] : 'unknown failure';
|
||||||
|
const details = typeof message === 'string' ? message : message['_'];
|
||||||
let path;
|
let path;
|
||||||
let line;
|
let line;
|
||||||
const src = getExceptionSource(details, this.options.trackedFiles, file => this.getRelativePath(file));
|
const src = getExceptionSource(details, this.options.trackedFiles, file => this.getRelativePath(file));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue