summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-12-06 01:53:16 +0100
committerGitHub <noreply@github.com>2023-12-06 00:53:16 +0000
commitbd7a6bb0161c3f75785dc6431220c20f0d50c8fd (patch)
tree10327ae3d234c78519d2acf3b5277273c5db3607 /cli/tests
parentcac17267fbe83f25181c4f8503c01b92694c46be (diff)
chore: forward v1.38.5 release commit to main (#21472)
Co-authored-by: denobot <33910674+denobot@users.noreply.github.com>
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/unit/kv_queue_undelivered_test.ts18
1 files changed, 10 insertions, 8 deletions
diff --git a/cli/tests/unit/kv_queue_undelivered_test.ts b/cli/tests/unit/kv_queue_undelivered_test.ts
index c2c02905c..2b1a2b0aa 100644
--- a/cli/tests/unit/kv_queue_undelivered_test.ts
+++ b/cli/tests/unit/kv_queue_undelivered_test.ts
@@ -3,18 +3,20 @@ import { assertEquals } from "./test_util.ts";
const sleep = (time: number) => new Promise((r) => setTimeout(r, time));
-let isCI: boolean;
-try {
- isCI = Deno.env.get("CI") !== undefined;
-} catch {
- isCI = true;
-}
+// TODO(igorzi): https://github.com/denoland/deno/issues/21437
+// let isCI: boolean;
+// try {
+// isCI = Deno.env.get("CI") !== undefined;
+// } catch {
+// isCI = true;
+// }
function queueTest(name: string, fn: (db: Deno.Kv) => Promise<void>) {
- Deno.test({
+ // TODO(igorzi): https://github.com/denoland/deno/issues/21437
+ Deno.test.ignore({
name,
// https://github.com/denoland/deno/issues/18363
- ignore: Deno.build.os === "darwin" && isCI,
+ // ignore: Deno.build.os === "darwin" && isCI,
async fn() {
const db: Deno.Kv = await Deno.openKv(
":memory:",