mirror of https://github.com/nodejs/node.git
test: use common.mustCall in test-worker-esm-exit
PR-URL: https://github.com/nodejs/node/pull/32544 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>pull/32617/head
parent
a6ab883eaa
commit
060a170e29
|
@ -6,4 +6,6 @@ const { Worker } = require('worker_threads');
|
|||
|
||||
const w = new Worker(fixtures.path('es-modules/import-process-exit.mjs'));
|
||||
w.on('error', common.mustNotCall());
|
||||
w.on('exit', (code) => assert.strictEqual(code, 42));
|
||||
w.on('exit',
|
||||
common.mustCall((code) => assert.strictEqual(code, 42))
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue