Skip to content

Commit

Permalink
Calculate failure count correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshMock committed Dec 14, 2023
1 parent 3dcaad1 commit 8ac4257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ async function start ({ client }) {
- Total: ${stats.total}
- Skip: ${stats.skip}
- Pass: ${stats.pass}
- Fail: ${stats.total - stats.pass}
- Fail: ${stats.total - (stats.pass + stats.skip)}
- Assertions: ${stats.assertions}
`)
}
Expand Down

0 comments on commit 8ac4257

Please sign in to comment.