summaryrefslogtreecommitdiff
path: root/test/parallel/test-timers-clear-object-does-not-throw-error.js
blob: 9752f53abd075570ef352b69810548e12531c7a6 (plain)
1
2
3
4
5
6
7
8
'use strict';
require('../common');

// This test makes sure clearing timers with
// objects doesn't throw
clearImmediate({});
clearTimeout({});
clearInterval({});