Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fgerthoffert committed Sep 26, 2023
1 parent af0b2c1 commit 6114ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ingest/parse-json-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const mochaParser = (rawReports: any[]): JRRun => {
return {
name: mochaTest.title,
time: mochaTest.duration,
status: mochaTest.pass === true ? 'PASS' : 'FAIL',
status,
failures: [{text: mochaTest.err.estack}],
steps: mochaTest.code,
}
Expand Down

0 comments on commit 6114ea8

Please sign in to comment.