mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
chore: disable curl --http2 tests (#21247)
This commit is contained in:
parent
58068a7d1c
commit
4a2d8c4bbd
1 changed files with 14 additions and 2 deletions
|
@ -3635,8 +3635,12 @@ function isProhibitedForTrailer(key: string): boolean {
|
|||
return s.has(key.toLowerCase());
|
||||
}
|
||||
|
||||
// TODO(mmastrac): curl on Windows CI stopped supporting --http2?
|
||||
Deno.test(
|
||||
{ permissions: { net: true, run: true } },
|
||||
{
|
||||
permissions: { net: true, run: true },
|
||||
ignore: Deno.build.os === "windows",
|
||||
},
|
||||
async function httpServeCurlH2C() {
|
||||
const ac = new AbortController();
|
||||
const server = Deno.serve(
|
||||
|
@ -3705,8 +3709,16 @@ Deno.test(
|
|||
},
|
||||
);
|
||||
|
||||
// TODO(mmastrac): curl on CI stopped supporting --http2?
|
||||
Deno.test(
|
||||
{ permissions: { net: true, run: true, read: true } },
|
||||
{
|
||||
permissions: {
|
||||
net: true,
|
||||
run: true,
|
||||
read: true,
|
||||
},
|
||||
ignore: Deno.build.os === "windows",
|
||||
},
|
||||
async function httpsServeCurlH2C() {
|
||||
const ac = new AbortController();
|
||||
const server = Deno.serve(
|
||||
|
|
Loading…
Reference in a new issue