()
| 159 | } |
| 160 | |
| 161 | toJSON() { |
| 162 | return { |
| 163 | id: this.id, |
| 164 | title: this.title, |
| 165 | created_at: this.created_at, |
| 166 | status: this.status, |
| 167 | brief: this.brief, |
| 168 | assertions: this.assertions, |
| 169 | features: this.features, |
| 170 | }; |
| 171 | } |
| 172 | |
| 173 | pending() { return this.assertions.filter((a) => a.state === STATES.PENDING); } |
| 174 | failed() { return this.assertions.filter((a) => a.state === STATES.FAILED); } |