()
| 172 | |
| 173 | pending() { return this.assertions.filter((a) => a.state === STATES.PENDING); } |
| 174 | failed() { return this.assertions.filter((a) => a.state === STATES.FAILED); } |
| 175 | passed() { return this.assertions.filter((a) => a.state === STATES.PASSED); } |
| 176 | skipped() { return this.assertions.filter((a) => a.state === STATES.SKIPPED); } |
| 177 |