From f4246ee1fca5cb70f6a9ddf24d8282d6292c6366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 4 Jan 2021 14:27:29 +0100 Subject: [PATCH] chore: disable flaky test on Windows (#8987) --- cli/tests/unit/fetch_test.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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];