(command: string, commandArgs: string[], options: { cwd?: string } = {})
| 79 | ]); |
| 80 | |
| 81 | function run(command: string, commandArgs: string[], options: { cwd?: string } = {}): string { |
| 82 | return runText(command, commandArgs, { cwd: options.cwd }); |
| 83 | } |
| 84 | |
| 85 | function yamlScalar(value: string): string { |
| 86 | return JSON.stringify(value); |
no test coverage detected