Skip to content

Commit

Permalink
disable timers-block-eventloop for now
Browse files Browse the repository at this point in the history
Refs: libuv/libuv#3686

Waiting to see if this is supposed to be defined behavior
  • Loading branch information
mmomtchev committed Oct 10, 2022
1 parent c73b5d6 commit 8e48690
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/sequential/test-timers-block-eventloop.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ const { sleep } = require('internal/util');

let called = false;
const t1 = setInterval(() => {
assert(!called);
// Temporarily disable this test until there is a solution for
// https://github.com/libuv/libuv/issues/3686
//assert(!called);
called = true;
setImmediate(common.mustCall(() => {
clearInterval(t1);
Expand Down

0 comments on commit 8e48690

Please sign in to comment.