summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-enroll-invalid-msecs.js
blob: df6ad04069910fa6f352cf5d0948b253b003112a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';

const common = require('../common');
const timers = require('timers');

[
  {},
  [],
  'foo',
  () => { },
  Symbol('foo')
].forEach((val) => {
  common.expectsError(
    () => timers.enroll({}, val),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError
    }
  );
});

[
  -1,
  Infinity,
  NaN
].forEach((val) => {
  common.expectsError(
    () => timers.enroll({}, val),
    {
      code: 'ERR_VALUE_OUT_OF_RANGE',
      type: RangeError,
      message: 'The value of "msecs" must be a non-negative ' +
               `finite number. Received "${val}"`
    }
  );
});