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.

27 lines
577 B

'use strict';
const common = require('../common');
14 years ago
var 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);
});