diff --git a/test/report/test-report-uv-handles.js b/test/report/test-report-uv-handles.js index 6473b630f5747a..65468bb48d1955 100644 --- a/test/report/test-report-uv-handles.js +++ b/test/report/test-report-uv-handles.js @@ -133,7 +133,7 @@ if (process.argv[2] === 'child') { } assert(handle.is_referenced); }, 3), - timer: common.mustCall(function timer_validator(handle) { + timer: common.mustCallAtLeast(function timer_validator(handle) { assert(!handle.is_referenced); assert.strictEqual(handle.repeat, 0); }), @@ -143,6 +143,7 @@ if (process.argv[2] === 'child') { assert(handle.is_referenced); }), }; + console.log(report.libuv); for (const entry of report.libuv) { if (validators[entry.type]) validators[entry.type](entry); }