diff options
author | Igor Zinkovsky <igor@deno.com> | 2023-09-23 17:59:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-23 17:59:01 -0700 |
commit | b5ba5f157ed880568d5154e8443073dcf80098f8 (patch) | |
tree | 17eada0b40b39406df5e09cd6a74093c9a2a4a32 /cli/tests | |
parent | 68851d6f371ce353d4313a17a4d0461f03061814 (diff) |
fix(kv): unflake kv unit tests (#20640)
fixes #20635
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit/kv_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/kv_test.ts b/cli/tests/unit/kv_test.ts index d3038a44b..da5dba6af 100644 --- a/cli/tests/unit/kv_test.ts +++ b/cli/tests/unit/kv_test.ts @@ -1721,7 +1721,7 @@ Deno.test({ if (count == 3) { promise.resolve(); } - await sleep(60000); + await new Promise(() => {}); }); // Enqueue 3 messages. |