summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-04 14:27:29 +0100
committerGitHub <noreply@github.com>2021-01-04 14:27:29 +0100
commitf4246ee1fca5cb70f6a9ddf24d8282d6292c6366 (patch)
tree2b7cc3f430dd709bb39dfba2799a5bed33a78192
parent379eedc05c1a841557d8f0a9c2cd33ec3362d607 (diff)
chore: disable flaky test on Windows (#8987)
-rw-r--r--cli/tests/unit/fetch_test.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts
index 0fbf01e6b..85792b203 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<void> {
const nullBodyStatus = [101, 204, 205, 304];