node/test/parallel/test-timers-zero-timeout.js
Jason Hedrick d904163119 test: comparison operator now more strict
The 'equals' comparison operator was '==' instead of the
more strict '===', so it has been changed to be more strict

PR-URL: https://github.com/nodejs/node/pull/8190
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-08-22 10:58:15 -07:00

33 lines
718 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
// https://github.com/joyent/node/issues/2079 - zero timeout drops extra args
{
setTimeout(common.mustCall(f), 0, 'foo', 'bar', 'baz');
setTimeout(function() {}, 0);
function f(a, b, c) {
assert.strictEqual(a, 'foo');
assert.strictEqual(b, 'bar');
assert.strictEqual(c, 'baz');
}
}
{
let ncalled = 0;
const iv = setInterval(f, 0, 'foo', 'bar', 'baz');
function f(a, b, c) {
assert.strictEqual(a, 'foo');
assert.strictEqual(b, 'bar');
assert.strictEqual(c, 'baz');
if (++ncalled === 3) clearTimeout(iv);
}
process.on('exit', function() {
assert.strictEqual(ncalled, 3);
});
}