summaryrefslogtreecommitdiff
path: root/tests/unit/fetch_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-08-26 22:58:28 +0100
committerGitHub <noreply@github.com>2024-08-26 23:58:28 +0200
commitba58628601057c6f996cbad287fcfbe353872368 (patch)
tree5642806d3aed1d46eab233511ef8a929cf0c51d3 /tests/unit/fetch_test.ts
parent631d931973fbb7d2e01e1aeb87a33dd9d63ec38e (diff)
Reland "test: run unit tests with DENO_FUTURE=1" (#25212)
Reverted in https://github.com/denoland/deno/pull/25060
Diffstat (limited to 'tests/unit/fetch_test.ts')
-rw-r--r--tests/unit/fetch_test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/fetch_test.ts b/tests/unit/fetch_test.ts
index aa4ff3067..721b6912d 100644
--- a/tests/unit/fetch_test.ts
+++ b/tests/unit/fetch_test.ts
@@ -9,6 +9,7 @@ import {
assertStringIncludes,
assertThrows,
delay,
+ DENO_FUTURE,
fail,
unimplemented,
} from "./test_util.ts";
@@ -1358,7 +1359,7 @@ Deno.test(
);
Deno.test(
- { permissions: { read: true, net: true } },
+ { permissions: { read: true, net: true }, ignore: DENO_FUTURE },
async function fetchCustomClientPrivateKey(): Promise<
void
> {