Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test: remove duplicate checks in pummel/test-timers
Remove checks in pummel/test-timers that are already checked in
parallel/test-timers-clear-null-does-not-throw-error.

PR-URL: #34473
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and MylesBorins committed Jul 27, 2020
1 parent 92c57b2 commit 81eaaa2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/pummel/test-timers.js
Expand Up @@ -23,14 +23,10 @@
const common = require('../common');
const assert = require('assert');

const WINDOW = 200; // Why is does this need to be so big?
const WINDOW = 200; // Why does this need to be so big?

let interval_count = 0;

// Check that these don't blow up.
clearTimeout(null);
clearInterval(null);

assert.strictEqual(setTimeout instanceof Function, true);
const starttime = new Date();
setTimeout(common.mustCall(function() {
Expand Down

0 comments on commit 81eaaa2

Please sign in to comment.