(command, options)
| 531 | // they reach the wire. RunnerLike expects only stdout, stderr, and exit. |
| 532 | const rpcRunner: RunnerLike = { |
| 533 | exec(command, options) { |
| 534 | const handle = runner.exec(command, options); |
| 535 | return { id: handle.id, events: dropHeartbeats(handle.events) }; |
| 536 | }, |
| 537 | get(id, options) { |
| 538 | const handle = runner.get(id, options); |
| 539 | return { id: handle.id, events: dropHeartbeats(handle.events) }; |
nothing calls this directly
no test coverage detected