()
| 12 | let port; |
| 13 | |
| 14 | function onsend() { |
| 15 | if (sent++ < limit) { |
| 16 | client.send(chunk, 0, chunk.length, port, common.localhostIPv4, onsend); |
| 17 | } else { |
| 18 | assert.strictEqual(async, true); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | client.on('listening', function() { |
| 23 | port = this.address().port; |
no test coverage detected
searching dependent graphs…