Files
Kmake/test/parallel/test-timers-clear-object-does-not-throw-error.js
2026-05-26 23:36:42 -07:00

9 lines
164 B
JavaScript

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