@@ -165,11 +165,11 @@ describe('Type System: Objects', () => {
165165 } ,
166166 } ;
167167 const testObject1 = new GraphQLObjectType ( {
168- name : 'Test1 ' ,
168+ name : 'Test ' ,
169169 fields : outputFields ,
170170 } ) ;
171171 const testObject2 = new GraphQLObjectType ( {
172- name : 'Test2 ' ,
172+ name : 'Test ' ,
173173 fields : outputFields ,
174174 } ) ;
175175
@@ -191,11 +191,11 @@ describe('Type System: Objects', () => {
191191 field2 : { type : ScalarType } ,
192192 } ;
193193 const testInputObject1 = new GraphQLInputObjectType ( {
194- name : 'Test1 ' ,
194+ name : 'Test ' ,
195195 fields : inputFields ,
196196 } ) ;
197197 const testInputObject2 = new GraphQLInputObjectType ( {
198- name : 'Test2 ' ,
198+ name : 'Test ' ,
199199 fields : inputFields ,
200200 } ) ;
201201
@@ -243,6 +243,7 @@ describe('Type System: Objects', () => {
243243 } ) ;
244244 expect ( objType . getFields ( ) ) . to . deep . equal ( {
245245 f : {
246+ coordinate : 'SomeObject.f' ,
246247 name : 'f' ,
247248 description : undefined ,
248249 type : ScalarType ,
@@ -270,11 +271,13 @@ describe('Type System: Objects', () => {
270271 } ) ;
271272 expect ( objType . getFields ( ) ) . to . deep . equal ( {
272273 f : {
274+ coordinate : 'SomeObject.f' ,
273275 name : 'f' ,
274276 description : undefined ,
275277 type : ScalarType ,
276278 args : [
277279 {
280+ coordinate : 'SomeObject.f(arg:)' ,
278281 name : 'arg' ,
279282 description : undefined ,
280283 type : ScalarType ,
@@ -624,6 +627,7 @@ describe('Type System: Enums', () => {
624627
625628 expect ( EnumTypeWithNullishValue . getValues ( ) ) . to . deep . equal ( [
626629 {
630+ coordinate : 'EnumWithNullishValue.NULL' ,
627631 name : 'NULL' ,
628632 description : undefined ,
629633 value : null ,
@@ -632,6 +636,7 @@ describe('Type System: Enums', () => {
632636 astNode : undefined ,
633637 } ,
634638 {
639+ coordinate : 'EnumWithNullishValue.NAN' ,
635640 name : 'NAN' ,
636641 description : undefined ,
637642 value : NaN ,
@@ -640,6 +645,7 @@ describe('Type System: Enums', () => {
640645 astNode : undefined ,
641646 } ,
642647 {
648+ coordinate : 'EnumWithNullishValue.NO_CUSTOM_VALUE' ,
643649 name : 'NO_CUSTOM_VALUE' ,
644650 description : undefined ,
645651 value : 'NO_CUSTOM_VALUE' ,
@@ -730,6 +736,7 @@ describe('Type System: Input Objects', () => {
730736 } ) ;
731737 expect ( inputObjType . getFields ( ) ) . to . deep . equal ( {
732738 f : {
739+ coordinate : 'SomeInputObject.f' ,
733740 name : 'f' ,
734741 description : undefined ,
735742 type : ScalarType ,
@@ -750,6 +757,7 @@ describe('Type System: Input Objects', () => {
750757 } ) ;
751758 expect ( inputObjType . getFields ( ) ) . to . deep . equal ( {
752759 f : {
760+ coordinate : 'SomeInputObject.f' ,
753761 name : 'f' ,
754762 description : undefined ,
755763 type : ScalarType ,
0 commit comments