(command = 'printf HELLO')
| 101 | } |
| 102 | |
| 103 | function runCommandStepResponse(command = 'printf HELLO') { |
| 104 | const runCommandBody = writeStringField(23, command); |
| 105 | const step = Buffer.concat([ |
| 106 | writeVarintField(1, 28), |
| 107 | writeVarintField(4, 1), |
| 108 | writeMessageField(28, runCommandBody), |
| 109 | ]); |
| 110 | return writeMessageField(1, step); |
| 111 | } |
| 112 | |
| 113 | function pendingReadUrlStepResponse() { |
| 114 | const spec = Buffer.concat([ |
no test coverage detected