@@ -16,7 +16,6 @@ import {
16
16
type FieldNode ,
17
17
type GraphQLFormattedError ,
18
18
GraphQLScalarType ,
19
- version as graphqlVersion ,
20
19
} from 'graphql' ;
21
20
22
21
// Note that by doing deep imports here we don't need to install React.
@@ -1179,11 +1178,8 @@ export function defineIntegrationTestSuiteApolloServerTests(
1179
1178
expect ( Object . keys ( reports [ 0 ] . tracesPerQuery ) [ 0 ] ) . toMatch ( / ^ # - \n / ) ;
1180
1179
} ) ;
1181
1180
1182
- ( process . env . INCREMENTAL_DELIVERY_TESTS_ENABLED &&
1183
- graphqlVersion === '17.0.0-alpha.2'
1184
- ? it
1185
- : it . skip ) (
1186
- 'includes all fields with defer [email protected] ' ,
1181
+ ( process . env . INCREMENTAL_DELIVERY_TESTS_ENABLED ? it : it . skip ) (
1182
+ 'includes all fields with defer legacy' ,
1187
1183
async ( ) => {
1188
1184
await setupApolloServerAndFetchPair ( { } , { } , [ ] , true ) ;
1189
1185
const response = await fetch ( uri , {
@@ -1229,11 +1225,8 @@ export function defineIntegrationTestSuiteApolloServerTests(
1229
1225
} ,
1230
1226
) ;
1231
1227
1232
- ( process . env . INCREMENTAL_DELIVERY_TESTS_ENABLED &&
1233
- graphqlVersion === '17.0.0-alpha.9'
1234
- ? it
1235
- : it . skip ) (
1236
- 'includes all fields with defer [email protected] ' ,
1228
+ ( process . env . INCREMENTAL_DELIVERY_TESTS_ENABLED ? it : it . skip ) (
1229
+ 'includes all fields with defer modern' ,
1237
1230
async ( ) => {
1238
1231
await setupApolloServerAndFetchPair ( { } , { } , [ ] , true ) ;
1239
1232
const response = await fetch ( uri , {
0 commit comments