(lines, reasoningSummary)
| 164 | } |
| 165 | |
| 166 | function appendReasoningSection(lines, reasoningSummary) { |
| 167 | if (!Array.isArray(reasoningSummary) || reasoningSummary.length === 0) { |
| 168 | return; |
| 169 | } |
| 170 | |
| 171 | lines.push("", "Reasoning:"); |
| 172 | for (const section of reasoningSummary) { |
| 173 | lines.push(`- ${section}`); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | export function renderSetupReport(report) { |
| 178 | const lines = [ |
no outgoing calls
no test coverage detected