mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
77c2da10fd
fixes #1287 PR-URL: https://github.com/iojs/io.js/pull/1288 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
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);
|
|
});
|