summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/node/rejection_handled_web_process.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/node/rejection_handled_web_process.ts')
-rw-r--r--cli/tests/testdata/node/rejection_handled_web_process.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/node/rejection_handled_web_process.ts b/cli/tests/testdata/node/rejection_handled_web_process.ts
index 00d943feb..e331f8998 100644
--- a/cli/tests/testdata/node/rejection_handled_web_process.ts
+++ b/cli/tests/testdata/node/rejection_handled_web_process.ts
@@ -19,8 +19,8 @@ process.on("rejectionHandled", (_) => {
const a = Promise.reject(1);
setTimeout(() => {
a.catch(() => console.log("Added catch handler to the promise"));
-}, 10);
+}, 100);
setTimeout(() => {
console.log("Success");
-}, 50);
+}, 500);