1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00

ignore post streaming test on linux

This commit is contained in:
Yoshiya Hinosawa 2024-10-17 23:42:48 +09:00
parent 25d02bcfde
commit d261504014
No known key found for this signature in database
GPG key ID: 9017DB4559488785

View file

@ -1457,7 +1457,8 @@ Deno.test("[node/http] client closing a streaming request doesn't terminate serv
clearInterval(interval!);
});
Deno.test("[node/http] http.request() post streaming body works", async () => {
const IGNORED_X = "[node/http] http.request() post streaming body works";
Deno.test(IGNORED_X, { ignore: Deno.build.os === "linux" }, async () => {
const server = http.createServer((req, res) => {
if (req.method === "POST") {
let receivedBytes = 0;