(value: string)
| 489 | } |
| 490 | |
| 491 | function normalizeLines(value: string) { |
| 492 | return value.replaceAll("\r\n", "\n") |
| 493 | } |
| 494 | |
| 495 | // Convenience for the common assertion pattern. Dumps stderr/stdout when |
| 496 | // the exit code doesn't match — saves debugging time on CI failures. |