mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
15 lines
236 B
JavaScript
15 lines
236 B
JavaScript
|
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);
|
||
|
});
|