* Map a terminal `RunResponse.status` to the CLI exit code. * `passed` → 0; everything else → 1.
(status: string)
| 4190 | * `passed` → 0; everything else → 1. |
| 4191 | */ |
| 4192 | function exitCodeForRunStatus(status: string): number { |
| 4193 | return status === 'passed' ? 0 : 1; |
| 4194 | } |
| 4195 | |
| 4196 | // --------------------------------------------------------------------------- |
| 4197 | // Backend-test wait fallback (dogfood L1888) |
no outgoing calls
no test coverage detected