mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
579 B
26 lines
579 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
process.nextTick(common.mustCall(function() {
|
|
process.nextTick(common.mustCall(function() {
|
|
process.nextTick(common.mustCall(function() {}));
|
|
}));
|
|
}));
|
|
|
|
setTimeout(common.mustCall(function() {
|
|
process.nextTick(common.mustCall(function() {}));
|
|
}), 50);
|
|
|
|
process.nextTick(common.mustCall(function() {}));
|
|
|
|
var obj = {};
|
|
|
|
process.nextTick(function(a, b) {
|
|
assert.equal(a, 42);
|
|
assert.equal(b, obj);
|
|
}, 42, obj);
|
|
|
|
process.on('exit', function() {
|
|
process.nextTick(common.fail);
|
|
});
|
|
|