()
| 192 | }) |
| 193 | }, |
| 194 | 'https - keepalive' () { |
| 195 | return makeParallelRequests(resolve => { |
| 196 | https.get(httpsKeepAliveOptions, res => { |
| 197 | res |
| 198 | .pipe( |
| 199 | new Writable({ |
| 200 | write (chunk, encoding, callback) { |
| 201 | callback() |
| 202 | } |
| 203 | }) |
| 204 | ) |
| 205 | .on('finish', resolve) |
| 206 | }) |
| 207 | }) |
| 208 | }, |
| 209 | 'undici - pipeline' () { |
| 210 | return makeParallelRequests(resolve => { |
| 211 | dispatcher |
nothing calls this directly
no test coverage detected