Skip to content

Commit

Permalink
Increase setInterval delay in Ydoc test (#10055)
Browse files Browse the repository at this point in the history
  • Loading branch information
4e6 authored May 23, 2024
1 parent 9d75f79 commit b27b5ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void clearTimeout() throws Exception {
var p = function (x, y) {
globalThis.result = 10*x + y;
};
var timeoutId = setTimeout(p, 9999, 4, 2);
var timeoutId = setTimeout(p, 99999, 4, 2);
clearTimeout(timeoutId);
""";

Expand Down

0 comments on commit b27b5ea

Please sign in to comment.