()
| 206 | let connectionSocket; |
| 207 | |
| 208 | function invokeCallbackIfDone() { |
| 209 | if (connectionHandlerInvoked && timeoutHandlerInvoked) { |
| 210 | connectionSocket.destroy(); |
| 211 | server.close(); |
| 212 | cb(); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | const server = https.createServer(serverOptions, common.mustCall( |
| 217 | (req, res) => { |
no test coverage detected
searching dependent graphs…