()
| 33 | } |
| 34 | |
| 35 | simplify() { |
| 36 | return { |
| 37 | hookName: this.hookName, |
| 38 | title: this.title, |
| 39 | // test: this.test ? serializeTest(this.test) : null, |
| 40 | // suite: this.suite ? serializeSuite(this.suite) : null, |
| 41 | error: this.err ? serializeError(this.err) : null, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | toString() { |
| 46 | return this.hookName |
nothing calls this directly
no test coverage detected