Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
don't test clear interval twice
  • Loading branch information
lrlna committed Dec 2, 2016
commit 5cc4b0b7b9e1c7efb7591f8c6428c8fb895edf0c
4 changes: 2 additions & 2 deletions test/parallel/test-timers-clear-null-does-not-throw-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ assert.doesNotThrow(() => clearTimeout(null));

assert.doesNotThrow(() => clearTimeout());

assert.doesNotThrow(() => clearInterval(null));
assert.doesNotThrow(() => clearImmediate(null));

assert.doesNotThrow(() => clearInterval());
assert.doesNotThrow(() => clearImmediate());