diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-12-06 01:53:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 00:53:16 +0000 |
commit | bd7a6bb0161c3f75785dc6431220c20f0d50c8fd (patch) | |
tree | 10327ae3d234c78519d2acf3b5277273c5db3607 /cli | |
parent | cac17267fbe83f25181c4f8503c01b92694c46be (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')
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/napi/sym/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/tests/unit/kv_queue_undelivered_test.ts | 18 |
3 files changed, 12 insertions, 10 deletions
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<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:", |