@@ -13,6 +13,7 @@ void main() {
1313 canStreamRequestBody: false ,
1414 canStreamResponseBody: true ,
1515 redirectAlwaysAllowed: true ,
16+ canWorkInIsolates: false ,
1617 );
1718 });
1819
@@ -25,6 +26,7 @@ void main() {
2526 canStreamRequestBody: false ,
2627 canStreamResponseBody: true ,
2728 redirectAlwaysAllowed: true ,
29+ canWorkInIsolates: false ,
2830 );
2931 });
3032
@@ -37,11 +39,12 @@ void main() {
3739 canStreamRequestBody: false ,
3840 canStreamResponseBody: true ,
3941 redirectAlwaysAllowed: true ,
42+ canWorkInIsolates: false ,
4043 );
4144 });
4245
4346 // Fails with ERR_H2_OR_QUIC_REQUIRED
44- // That means server must support request streaming is some special form
47+ // That means server must support request streaming in some special form
4548 // or something.
4649 // group('client conformance tests with streaming mode', () {
4750 // testAll(
@@ -52,6 +55,7 @@ void main() {
5255 // canStreamRequestBody: true,
5356 // canStreamResponseBody: true,
5457 // redirectAlwaysAllowed: true,
58+ // canWorkInIsolates: false,
5559 // );
5660 // });
5761}
0 commit comments