()
| 1079 | let chunk = 'stream payload' |
| 1080 | const thePayload = new stream.Readable({ |
| 1081 | read () { |
| 1082 | this.push(chunk) |
| 1083 | chunk = null |
| 1084 | } |
| 1085 | }) |
| 1086 | |
| 1087 | instance.addHook('onSend', function (request, reply, payload, done) { |
nothing calls this directly
no outgoing calls
no test coverage detected