mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 18:02:21 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
32 lines
710 B
JavaScript
32 lines
710 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
function range(n) {
|
|
return 'x'.repeat(n + 1).split('').map(function(_, i) { return i; });
|
|
}
|
|
|
|
function timeout(nargs) {
|
|
var args = range(nargs);
|
|
setTimeout.apply(null, [callback, 1].concat(args));
|
|
|
|
function callback() {
|
|
assert.deepEqual([].slice.call(arguments), args);
|
|
if (nargs < 128) timeout(nargs + 1);
|
|
}
|
|
}
|
|
|
|
function interval(nargs) {
|
|
var args = range(nargs);
|
|
var timer = setTimeout.apply(null, [callback, 1].concat(args));
|
|
|
|
function callback() {
|
|
clearInterval(timer);
|
|
assert.deepEqual([].slice.call(arguments), args);
|
|
if (nargs < 128) interval(nargs + 1);
|
|
}
|
|
}
|
|
|
|
timeout(0);
|
|
interval(0);
|