summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli/napi/sym/Cargo.toml2
-rw-r--r--cli/tests/unit/kv_queue_undelivered_test.ts18
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:",