diff options
author | Marcos Casagrande <marcoscvp90@gmail.com> | 2022-09-23 14:34:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-23 08:34:04 -0400 |
commit | 12306022da16fb5019d0a3d4f3d6e78dd7830d63 (patch) | |
tree | 94e56c41457c1a338249c60fe495ee5e7f1211f2 /cli/tests/unit/fetch_test.ts | |
parent | 72af1496d9bc180b49d42976a31b331d0be1b975 (diff) |
test(ext/fetch): enable null body status test on windows (#15995)
Diffstat (limited to 'cli/tests/unit/fetch_test.ts')
-rw-r--r-- | cli/tests/unit/fetch_test.ts | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 096ea5ab0..b3e097cae 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" }, +Deno.test( + { permissions: { net: true } }, async function fetchNullBodyStatus() { const nullBodyStatus = [101, 204, 205, 304]; |