()
| 3 | const len = +process.argv[3]; |
| 4 | const msg = '.'.repeat(len); |
| 5 | const send = () => { |
| 6 | while (process.send(msg)); |
| 7 | // Wait: backlog of unsent messages exceeds threshold |
| 8 | setImmediate(send); |
| 9 | }; |
| 10 | send(); |
| 11 | } else { |
| 12 | const common = require('../common.js'); |
no test coverage detected