()
| 207 | } |
| 208 | |
| 209 | function noOutput(): CompactToolSummary { |
| 210 | return { text: ansi.dim('no output'), placeholder: true, protect: true }; |
| 211 | } |
| 212 | |
| 213 | function textResultSummary(text: string): CompactToolSummary { |
| 214 | if (!text.trim()) return noOutput(); |
no outgoing calls
no test coverage detected