diff --git a/test/parallel/test-worker-ref-onexit.js b/test/parallel/test-worker-ref-onexit.js index 0250c592ce91ae..24c940f8c8df93 100644 --- a/test/parallel/test-worker-ref-onexit.js +++ b/test/parallel/test-worker-ref-onexit.js @@ -5,6 +5,8 @@ const { Worker } = require('worker_threads'); // Check that worker.unref() makes the 'exit' event not be emitted, if it is // the only thing we would otherwise be waiting for. -const w = new Worker('', { eval: true }); +// Use `setInterval()` to make sure the worker is alive until the end of the +// event loop turn. +const w = new Worker('setInterval(() => {}, 100);', { eval: true }); w.unref(); w.on('exit', common.mustNotCall());