(cb)
| 60 | const agent = new TestAgent({ keepAlive: true, maxSockets: 1 }); |
| 61 | |
| 62 | function makeRequest(cb) { |
| 63 | const req = http.request({ agent }, common.mustCall((res) => { |
| 64 | res.resume(); |
| 65 | res.on('end', cb); |
| 66 | })); |
| 67 | req.end(''); |
| 68 | } |
| 69 | |
| 70 | // The actual test starts here: |
| 71 |
no test coverage detected