Skip to content

Commit

Permalink
Update jest-junit-parser.ts
Browse files Browse the repository at this point in the history
Added fix from dorny#506
  • Loading branch information
abhay-agarwal authored Jul 29, 2024
1 parent b986b45 commit cbda75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/jest-junit/jest-junit-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class JestJunitParser implements TestParser {
return undefined
}

const details = tc.failure[0]
const details = tc.failure[0] || tc.failure[0]._
let path
let line

Expand Down

0 comments on commit cbda75a

Please sign in to comment.