()
| 58 | } |
| 59 | |
| 60 | function client() { |
| 61 | const net = require('net'); |
| 62 | const client = net.connect({ |
| 63 | host: common.localhostIPv4, |
| 64 | port: common.PORT, |
| 65 | }, function() { |
| 66 | client.destroy(); |
| 67 | }); |
| 68 | } |
| 69 | |
| 70 | function parent() { |
| 71 | const spawn = require('child_process').spawn; |
no test coverage detected