@@ -1015,7 +1015,7 @@ test("response", (t) => {
10151015 }
10161016 ) ;
10171017
1018- t . test ( "consume request body as stream when input is stream" , async ( t ) => {
1018+ t . skip ( "consume request body as stream when input is stream" , async ( t ) => {
10191019 const rs = new ReadableStream ( {
10201020 async pull ( c ) {
10211021 await delay ( 100 ) ;
@@ -1033,7 +1033,7 @@ test("response", (t) => {
10331033 t . eq ( text , "Hello world!" ) ;
10341034 } ) ;
10351035
1036- t . test ( "consume request body as text when input is stream" , async ( t ) => {
1036+ t . skip ( "consume request body as text when input is stream" , async ( t ) => {
10371037 const rs = new ReadableStream ( {
10381038 async pull ( c ) {
10391039 await delay ( 100 ) ;
@@ -1070,7 +1070,7 @@ test("response", (t) => {
10701070 t . eq ( text , "Hello world!" ) ;
10711071 } ) ;
10721072
1073- t . test (
1073+ t . skip (
10741074 "consume request body as ArrayBuffer when input is stream" ,
10751075 async ( t ) => {
10761076 const rs = new ReadableStream ( {
@@ -1858,7 +1858,7 @@ test("fetch method", (t) => {
18581858 } ) ;
18591859
18601860 t . test ( "cloning" , ( t ) => {
1861- t . test ( "cloning response from text stream" , async ( t ) => {
1861+ t . skip ( "cloning response from text stream" , async ( t ) => {
18621862 const url = new URL ( "/stream" , BASE_URL ) ;
18631863 const res = await fetch ( url , {
18641864 reactNative : { textStreaming : true } ,
@@ -1895,7 +1895,7 @@ test("fetch method", (t) => {
18951895 } ,
18961896 } ) ;
18971897 const clone = res . clone ( ) ;
1898- const resJson = res . json ( ) ;
1898+ const resJson = await res . json ( ) ;
18991899 const cloneJson = await clone . json ( ) ;
19001900
19011901 t . eq ( resJson . headers . accept , "application/json" ) ;
0 commit comments