mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
test(ext/fetch): enable null body status test on windows (#15995)
This commit is contained in:
parent
72af1496d9
commit
12306022da
1 changed files with 1 additions and 7 deletions
|
@ -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" },
|
||||
{ permissions: { net: true } },
|
||||
async function fetchNullBodyStatus() {
|
||||
const nullBodyStatus = [101, 204, 205, 304];
|
||||
|
||||
|
|
Loading…
Reference in a new issue