(n, fn)
| 50 | testBothClosed(); |
| 51 | |
| 52 | function tickUnref(n, fn) { |
| 53 | if (n === 0) return fn(); |
| 54 | setImmediate(tickUnref, n - 1, fn).unref(); |
| 55 | } |
| 56 | |
| 57 | tickUnref(10, common.mustNotCall('The communication channel is still open')); |
no test coverage detected
searching dependent graphs…