mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
chore: disable flaky test on Windows (#8987)
This commit is contained in:
parent
379eedc05c
commit
f4246ee1fc
1 changed files with 7 additions and 1 deletions
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in a new issue