(output, expected, command)
| 57 | } |
| 58 | |
| 59 | function assertIncludes(output, expected, command) { |
| 60 | if (!output.includes(expected)) { |
| 61 | fail(`Native smoke output for "${command}" did not include "${expected}".\n${output}`); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | await ensureExecutableExists(); |
| 66 |