File tree 4 files changed +6
-6
lines changed
core/__tests__/QueryManager
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -941,7 +941,7 @@ describe('client', () => {
941
941
. then ( resolve , reject ) ;
942
942
} ) ;
943
943
944
- it ( 'removes client fields from the query before it reaches the link' , async ( ) => {
944
+ it ( 'removes @ client fields from the query before it reaches the link' , async ( ) => {
945
945
const result : { current : Operation | undefined } = {
946
946
current : undefined
947
947
}
@@ -989,7 +989,7 @@ describe('client', () => {
989
989
expect ( print ( result . current ! . query ) ) . toEqual ( print ( transformedQuery ) ) ;
990
990
} ) ;
991
991
992
- it ( 'sends client fields to the link when defaultOptions.transformQuery.removeClientFields is `false`' , async ( ) => {
992
+ it ( 'sends @ client fields to the link when defaultOptions.transformQuery.removeClientFields is `false`' , async ( ) => {
993
993
const result : { current : Operation | undefined } = {
994
994
current : undefined
995
995
} ;
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ describe('Link interactions', () => {
362
362
} ) ;
363
363
} ) ;
364
364
365
- it ( 'removes client fields from the query before it reaches the link' , async ( ) => {
365
+ it ( 'removes @ client fields from the query before it reaches the link' , async ( ) => {
366
366
const result : { current : Operation | undefined } = {
367
367
current : undefined
368
368
} ;
@@ -409,7 +409,7 @@ describe('Link interactions', () => {
409
409
expect ( print ( result . current ! . query ) ) . toEqual ( print ( expectedQuery ) )
410
410
} ) ;
411
411
412
- it ( 'sends client directives to the link when defaultOptions.transformQuery.removeClientFields is false' , async ( ) => {
412
+ it ( 'sends @ client fields to the link when defaultOptions.transformQuery.removeClientFields is false' , async ( ) => {
413
413
const result : { current : Operation | undefined } = {
414
414
current : undefined
415
415
} ;
Original file line number Diff line number Diff line change @@ -899,7 +899,7 @@ describe('SharedHttpTest', () => {
899
899
) ;
900
900
} ) ;
901
901
902
- it ( 'removes client fields from the query before sending it to the server' , async ( ) => {
902
+ it ( 'removes @ client fields from the query before sending it to the server' , async ( ) => {
903
903
fetchMock . mock ( 'https://example.com/graphql' , {
904
904
status : 200 ,
905
905
body : JSON . stringify ( {
Original file line number Diff line number Diff line change @@ -1015,7 +1015,7 @@ describe('HttpLink', () => {
1015
1015
) ;
1016
1016
} ) ;
1017
1017
1018
- it ( 'removes client fields from the query before sending it to the server' , async ( ) => {
1018
+ it ( 'removes @ client fields from the query before sending it to the server' , async ( ) => {
1019
1019
fetchMock . mock ( 'https://example.com/graphql' , {
1020
1020
status : 200 ,
1021
1021
body : JSON . stringify ( {
You can’t perform that action at this time.
0 commit comments