Files
Kmake/test/parallel/test-timers-unrefed-in-beforeexit.js
2026-05-26 23:36:42 -07:00

8 lines
154 B
JavaScript

'use strict';
const common = require('../common');
process.on('beforeExit', common.mustCall(() => {
setTimeout(common.mustNotCall(), 1).unref();
}));