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.
38 lines
662 B
38 lines
662 B
8 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const timers = require('timers');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
[
|
||
|
{},
|
||
|
[],
|
||
|
'foo',
|
||
|
() => { },
|
||
|
Symbol('foo')
|
||
|
].forEach((val) => {
|
||
|
assert.throws(
|
||
|
() => timers.enroll({}, val),
|
||
|
common.expectsError({
|
||
|
code: 'ERR_INVALID_ARG_TYPE',
|
||
|
type: TypeError
|
||
|
})
|
||
|
);
|
||
|
});
|
||
|
|
||
|
[
|
||
|
-1,
|
||
|
Infinity,
|
||
|
NaN
|
||
|
].forEach((val) => {
|
||
|
assert.throws(
|
||
|
() => timers.enroll({}, val),
|
||
|
common.expectsError({
|
||
|
code: 'ERR_VALUE_OUT_OF_RANGE',
|
||
|
type: RangeError,
|
||
|
message: 'The value of "msecs" must be a non-negative ' +
|
||
|
`finite number. Received "${val}"`
|
||
|
})
|
||
|
);
|
||
|
});
|