(command, args)
| 8 | const outcome = terminateProcessTree(1234, { |
| 9 | platform: "win32", |
| 10 | runCommandImpl(command, args) { |
| 11 | captured = { command, args }; |
| 12 | return { |
| 13 | command, |
| 14 | args, |
| 15 | status: 0, |
| 16 | signal: null, |
| 17 | stdout: "", |
| 18 | stderr: "", |
| 19 | error: null |
| 20 | }; |
| 21 | }, |
| 22 | killImpl() { |
| 23 | throw new Error("kill fallback should not run"); |
| 24 | } |
no outgoing calls
no test coverage detected