node/test/parallel/test-next-tick.js
Trevor Norris 10e31ba56c node: allow multiple arguments passed to nextTick
PR-URL: https://github.com/iojs/io.js/pull/1077
Reviewed-by: Colin Ihrig <cjihrig@gmail.com>
2015-04-15 17:02:21 -06:00

38 lines
645 B
JavaScript

var common = require('../common');
var assert = require('assert');
var complete = 0;
process.nextTick(function() {
complete++;
process.nextTick(function() {
complete++;
process.nextTick(function() {
complete++;
});
});
});
setTimeout(function() {
process.nextTick(function() {
complete++;
});
}, 50);
process.nextTick(function() {
complete++;
});
var obj = {};
process.nextTick(function(a, b) {
assert.equal(a, 42);
assert.equal(b, obj);
}, 42, obj);
process.on('exit', function() {
assert.equal(5, complete);
process.nextTick(function() {
throw new Error('this should not occur');
});
});