diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-04 14:27:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 14:27:29 +0100 |
commit | f4246ee1fca5cb70f6a9ddf24d8282d6292c6366 (patch) | |
tree | 2b7cc3f430dd709bb39dfba2799a5bed33a78192 /cli/tests/unit/fetch_test.ts | |
parent | 379eedc05c1a841557d8f0a9c2cd33ec3362d607 (diff) |
chore: disable flaky test on Windows (#8987)
Diffstat (limited to 'cli/tests/unit/fetch_test.ts')
-rw-r--r-- | cli/tests/unit/fetch_test.ts | 8 |
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]; |