(text)
| 74 | step_fmt(text) { this.#addStep(L_LOG, text, true) } |
| 75 | |
| 76 | warn(text) { |
| 77 | if ( ! this.#softFail ) { |
| 78 | warnedTests.add(this.#title) |
| 79 | } |
| 80 | this.#didWarn = true |
| 81 | this.#addStep(L_WARN, text) |
| 82 | } |
| 83 | |
| 84 | error (text) { |
| 85 | if ( ! this.#softFail ) { |
no test coverage detected