Skip to content

Commit 8ac4257

Browse files
committed
Calculate failure count correctly
1 parent 3dcaad1 commit 8ac4257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ async function start ({ client }) {
215215
- Total: ${stats.total}
216216
- Skip: ${stats.skip}
217217
- Pass: ${stats.pass}
218-
- Fail: ${stats.total - stats.pass}
218+
- Fail: ${stats.total - (stats.pass + stats.skip)}
219219
- Assertions: ${stats.assertions}
220220
`)
221221
}

0 commit comments

Comments
 (0)