Skip to content

Commit

Permalink
Update from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Jun 26, 2024
1 parent 032c8a9 commit 31493c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ function parseJunitXml(xml) {
else if (failure_or_error = testcase.failure || testcase.error) {
status = TestStatus.Fail;
const element = failure_or_error[0];
message = element.$.message;
message = element.$ ? element.$.message : undefined;
details = element._;
counts.failed++;
}
Expand Down

0 comments on commit 31493c7

Please sign in to comment.