Skip to content

Commit cac9a75

Browse files
authored
ci: show pass rate for e2e tests (#181)
1 parent 9702ab2 commit cac9a75

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/deno/junit2md.ts

+4
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,10 @@ console.log(
151151
} |`,
152152
)
153153

154+
console.log(
155+
`Pass rate: ${((testCount['✅'] / (testCount['✅'] + testCount['❌'])) * 100).toFixed(2)}%`,
156+
)
157+
154158
console.log('## Test cases')
155159

156160
console.log(details)

0 commit comments

Comments
 (0)