(options, handler)
| 10 | |
| 11 | class CustomAgent extends Agent { |
| 12 | dispatch (options, handler) { |
| 13 | options.headers['x-my-header'] = 'hello' |
| 14 | return super.dispatch(...arguments) |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | const server = createServer({ joinDuplicateHeaders: true }, (req, res) => { |
no outgoing calls
no test coverage detected