Helper to extract error message for logging
(error: unknown)
| 48 | |
| 49 | /** Helper to extract error message for logging */ |
| 50 | function errorMsg(error: unknown): string { |
| 51 | return getErrorMessage(error); |
| 52 | } |
| 53 | |
| 54 | /** Subdirectory under temp for background process output */ |
| 55 | const BG_OUTPUT_SUBDIR = "mux-bashes"; |
no test coverage detected