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 9b2463bcc..5dc9d417d 100644 --- a/tests/unit/fetch_test.ts +++ b/tests/unit/fetch_test.ts @@ -6,6 +6,7 @@ import { assertStringIncludes, assertThrows, delay, + DENO_FUTURE, fail, unimplemented, } from "./test_util.ts"; @@ -1355,7 +1356,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, net: true } }, + { permissions: { read: true, net: true }, ignore: DENO_FUTURE }, async function fetchCustomClientPrivateKey(): Promise< void > { |