()
| 47 | checkForced(); |
| 48 | |
| 49 | function checkUnforced() { |
| 50 | const worker = cluster.fork(); |
| 51 | worker |
| 52 | .on('online', common.mustCall(() => worker.disconnect())) |
| 53 | .on('exit', common.mustCall((status) => { |
| 54 | assert.strictEqual(status, SENTINEL); |
| 55 | })); |
| 56 | } |
| 57 | |
| 58 | function checkForced() { |
| 59 | const worker = cluster.fork(); |
no test coverage detected
searching dependent graphs…