summaryrefslogtreecommitdiff
path: root/test/message/max_tick_depth.js
blob: 1d2ec175c5d957da951b0425967857b3452222ac (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
require('../common');

process.maxTickDepth = 10;
var i = 20;
process.nextTick(function f() {
  console.error('tick %d', i);
  if (i-- > 0)
    process.nextTick(f);
});