From bd7a6bb0161c3f75785dc6431220c20f0d50c8fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 6 Dec 2023 01:53:16 +0100 Subject: chore: forward v1.38.5 release commit to main (#21472) Co-authored-by: denobot <33910674+denobot@users.noreply.github.com> --- cli/Cargo.toml | 2 +- cli/napi/sym/Cargo.toml | 2 +- cli/tests/unit/kv_queue_undelivered_test.ts | 18 ++++++++++-------- 3 files changed, 12 insertions(+), 10 deletions(-) (limited to 'cli') diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4873a21cc..82aedcec0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.38.4" +version = "1.38.5" authors.workspace = true default-run = "deno" edition.workspace = true diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml index 9966a24eb..7ab205662 100644 --- a/cli/napi/sym/Cargo.toml +++ b/cli/napi/sym/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "napi_sym" -version = "0.56.0" +version = "0.57.0" authors.workspace = true edition.workspace = true license.workspace = true 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) { - 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:", -- cgit v1.2.3