0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-timer-close.js

15 lines
236 B
JavaScript
Raw Normal View History

var assert = require('assert');
var t = new (process.binding('timer_wrap').Timer);
var called = 0;
function onclose() {
called++;
}
t.close(onclose);
t.close(onclose);
process.on('exit', function() {
assert.equal(1, called);
});