(status?: string)
| 197 | } |
| 198 | |
| 199 | function isFailedStatus(status?: string) { |
| 200 | const normalized = (status ?? "").toLowerCase(); |
| 201 | return /(fail|error)/.test(normalized); |
| 202 | } |
| 203 | |
| 204 | function parseSearch(tokens: string[]): ExploreEntry | null { |
| 205 | const commandName = tokens[0]?.toLowerCase() ?? ""; |
no outgoing calls
no test coverage detected