diff options
Diffstat (limited to 'tests/unit/fetch_test.ts')
-rw-r--r-- | tests/unit/fetch_test.ts | 3 |
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 > { |