(path)
| 38 | pathDelimiter: options.pathDelimiter ?? ":", |
| 39 | platform: options.platform ?? "linux", |
| 40 | fileExists(path) { |
| 41 | return files.has(path); |
| 42 | }, |
| 43 | async runCommand(command, args, runOptions) { |
| 44 | calls.push({ command, args, input: runOptions?.input }); |
| 45 | const mock = commands[command]; |