From 12306022da16fb5019d0a3d4f3d6e78dd7830d63 Mon Sep 17 00:00:00 2001 From: Marcos Casagrande Date: Fri, 23 Sep 2022 14:34:04 +0200 Subject: [PATCH] test(ext/fetch): enable null body status test on windows (#15995) --- cli/tests/unit/fetch_test.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 096ea5ab07..b3e097caed 100644 --- a/cli/tests/unit/fetch_test.ts +++ b/cli/tests/unit/fetch_test.ts @@ -1014,14 +1014,8 @@ Deno.test( }, ); -// FIXME(bartlomieju): for reasons unknown after working for -// a few months without a problem; this test started failing -// consistently on Windows CI with following error: -// TypeError: error sending request for url (http://localhost:4545/echo_server): -// connection error: An established connection was aborted by -// the software in your host machine. (os error 10053) Deno.test( - { permissions: { net: true }, ignore: Deno.build.os == "windows" }, + { permissions: { net: true } }, async function fetchNullBodyStatus() { const nullBodyStatus = [101, 204, 205, 304];