(text: string)
| 23 | |
| 24 | const execFileAsync = promisify(execFile); |
| 25 | const prefixes = getPrefixes(); |
| 26 | const mainPrefix = prefixes[0]; |
| 27 | |
| 28 | async function runWithInput(command: string, args: string[], input: string): Promise<void> { |
| 29 | await new Promise<void>((resolve, reject) => { |
| 30 | const child = execFile(command, args); |
| 31 | child.once("error", reject); |
| 32 | child.once("close", (code) => { |
no outgoing calls
no test coverage detected