(
failures: Array<{ name: string; error: string }>,
)
| 147 | } |
| 148 | |
| 149 | function formatFailureErrors( |
| 150 | failures: Array<{ name: string; error: string }>, |
| 151 | ): string { |
| 152 | return failures.map(f => `${f.name}: ${f.error}`).join('; ') |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Get the strict marketplace source allowlist from policy settings. |
no outgoing calls
no test coverage detected