mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 08:33:43 -05:00
test: deflake tests for rejection handled (#23448)
Fixes flakiness for rejection handled tests on Windows (7 failures in the past day).
This commit is contained in:
parent
3d841acf48
commit
7b02f2aba6
2 changed files with 2 additions and 2 deletions
|
@ -23,4 +23,4 @@ setTimeout(() => {
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
console.log("Success");
|
console.log("Success");
|
||||||
}, 500);
|
}, 1000);
|
||||||
|
|
2
tests/testdata/run/rejection_handled.ts
vendored
2
tests/testdata/run/rejection_handled.ts
vendored
|
@ -14,4 +14,4 @@ setTimeout(async () => {
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
console.log("Success");
|
console.log("Success");
|
||||||
}, 200);
|
}, 1000);
|
||||||
|
|
Loading…
Reference in a new issue