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:
parent
25d02bcfde
commit
d261504014
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue