diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 0fbf01e6b0..85792b2030 100644 --- a/cli/tests/unit/fetch_test.ts +++ b/cli/tests/unit/fetch_test.ts @@ -919,8 +919,14 @@ unitTest( }, ); +// 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) unitTest( - { perms: { net: true } }, + { perms: { net: true }, ignore: Deno.build.os == "windows" }, async function fetchNullBodyStatus(): Promise { const nullBodyStatus = [101, 204, 205, 304];