修复断言显示错误

This commit is contained in:
q4speed 2020-05-20 15:33:44 +08:00
parent 385bd44b77
commit df9f21d270
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
computed: {
assertion() {
return this.scenario.passAssertions - this.scenario.totalAssertions;
return this.scenario.passAssertions + "/" + this.scenario.totalAssertions;
},
success() {
return this.scenario.error === 0;