summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-enroll-invalid-msecs.js
blob: 384ab0ab25790825af84573bdef0de4beb4e3d55 (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
37
'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_OUT_OF_RANGE',
      type: RangeError,
      message: 'The value of "msecs" is out of range. ' +
               'It must be a non-negative finite number. ' +
               `Received ${val}`
    }
  );
});