Files
Kmake/test/parallel/test-timers-clear-object-does-not-throw-error.js

9 lines
164 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
require('../common');
// This test makes sure clearing timers with
// objects doesn't throw
clearImmediate({});
clearTimeout({});
clearInterval({});