(job)
| 614 | return ""; |
| 615 | } |
| 616 | } |
| 617 | async function runProcess(command, args, cwd, timeoutMs = 60000) { |
| 618 | return await new Promise((resolve) => { |
| 619 | const child = spawn(command, args, { cwd, shell: false, windowsHide: true }); |
| 620 | const stdout = []; |
| 621 | const stderr = []; |
no outgoing calls
no test coverage detected