(info: StatusEvent)
| 214 | } |
| 215 | |
| 216 | startStep(info: StatusEvent) { |
| 217 | if (!this.enabled) { |
| 218 | return |
| 219 | } |
| 220 | |
| 221 | this.pendingSteps.set(info.id, { |
| 222 | startedAt: Date.now(), |
| 223 | type: info.type, |
| 224 | }) |
| 225 | } |
| 226 | |
| 227 | finishStep(id: string) { |
| 228 | if (!this.enabled) { |
no test coverage detected