修复失败率bug
This commit is contained in:
parent
41bdc4e3f2
commit
385bd44b77
|
@ -105,7 +105,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
fail() {
|
fail() {
|
||||||
return (this.content.error / this.content.total).toFixed(0) + "%";
|
return (this.content.error / this.content.total * 100).toFixed(0) + "%";
|
||||||
},
|
},
|
||||||
assertions() {
|
assertions() {
|
||||||
return this.content.passAssertions + " / " + this.content.totalAssertions;
|
return this.content.passAssertions + " / " + this.content.totalAssertions;
|
||||||
|
|
Loading…
Reference in New Issue