diff options
-rw-r--r-- | tests/testdata/node/rejection_handled_web_process.ts | 2 | ||||
-rw-r--r-- | tests/testdata/run/rejection_handled.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/testdata/node/rejection_handled_web_process.ts b/tests/testdata/node/rejection_handled_web_process.ts index e331f8998..a5136ca3d 100644 --- a/tests/testdata/node/rejection_handled_web_process.ts +++ b/tests/testdata/node/rejection_handled_web_process.ts @@ -23,4 +23,4 @@ setTimeout(() => { setTimeout(() => { console.log("Success"); -}, 500); +}, 1000); diff --git a/tests/testdata/run/rejection_handled.ts b/tests/testdata/run/rejection_handled.ts index c29ae7089..16506ea4a 100644 --- a/tests/testdata/run/rejection_handled.ts +++ b/tests/testdata/run/rejection_handled.ts @@ -14,4 +14,4 @@ setTimeout(async () => { setTimeout(() => { console.log("Success"); -}, 200); +}, 1000); |