(output: unknown)
| 507 | } |
| 508 | |
| 509 | function savedOutputPath(output: unknown): string { |
| 510 | expect(typeof output).toBe('string'); |
| 511 | const outputPath = /^output_path: (.+)$/m.exec(output as string)?.[1]; |
| 512 | expect(outputPath).toBeTruthy(); |
| 513 | return outputPath!; |
| 514 | } |
| 515 | |
| 516 | function hookErrorMessageAssertCommand(expected: string): string { |
| 517 | const script = [ |