* Gets combined output from CLI result (ora outputs to stdout).
(result: { stdout: string; stderr: string })
| 27 | * Gets combined output from CLI result (ora outputs to stdout). |
| 28 | */ |
| 29 | function getOutput(result: { stdout: string; stderr: string }): string { |
| 30 | return result.stdout + result.stderr; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Normalizes path separators to forward slashes for cross-platform assertions. |
no outgoing calls
no test coverage detected