@@ -1954,7 +1954,7 @@ describe('Objects must adhere to Interface they implement', () => {
1954
1954
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
1955
1955
} ) ;
1956
1956
1957
- it ( 'accepts an Object with a subtyped Interface field (object subtyping union )' , ( ) => {
1957
+ it ( 'accepts an Object with a subtyped Interface field (union subtyped by object )' , ( ) => {
1958
1958
const schema = buildSchema ( `
1959
1959
type Query {
1960
1960
test: AnotherObject
@@ -1977,7 +1977,7 @@ describe('Objects must adhere to Interface they implement', () => {
1977
1977
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
1978
1978
} ) ;
1979
1979
1980
- it ( 'accepts an Object with a subtyped Interface field (union subtyping union)' , ( ) => {
1980
+ it ( 'accepts an Object with a subtyped Interface field (union subtyped by union)' , ( ) => {
1981
1981
const schema = buildSchema ( `
1982
1982
type Query {
1983
1983
test: AnotherObject
@@ -2002,7 +2002,7 @@ describe('Objects must adhere to Interface they implement', () => {
2002
2002
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
2003
2003
} ) ;
2004
2004
2005
- it ( 'accepts an Object with a subtyped Interface field (interface subtyping union )' , ( ) => {
2005
+ it ( 'accepts an Object with a subtyped Interface field (union subtyped by interface )' , ( ) => {
2006
2006
const schema = buildSchema ( `
2007
2007
type Query {
2008
2008
test: AnotherObject
@@ -2440,7 +2440,7 @@ describe('Interfaces must adhere to Interface they implement', () => {
2440
2440
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
2441
2441
} ) ;
2442
2442
2443
- it ( 'accepts an Interface with a subtyped Interface field (object subtyping union )' , ( ) => {
2443
+ it ( 'accepts an Interface with a subtyped Interface field (union subtyped by object )' , ( ) => {
2444
2444
const schema = buildSchema ( `
2445
2445
type Query {
2446
2446
test: ChildInterface
@@ -2463,7 +2463,7 @@ describe('Interfaces must adhere to Interface they implement', () => {
2463
2463
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
2464
2464
} ) ;
2465
2465
2466
- it ( 'accepts an Interface with a subtyped Interface field (union subtyping union)' , ( ) => {
2466
+ it ( 'accepts an Interface with a subtyped Interface field (union subtyped by union)' , ( ) => {
2467
2467
const schema = buildSchema ( `
2468
2468
type Query {
2469
2469
test: ChildInterface
@@ -2488,7 +2488,7 @@ describe('Interfaces must adhere to Interface they implement', () => {
2488
2488
expectJSON ( validateSchema ( schema ) ) . toDeepEqual ( [ ] ) ;
2489
2489
} ) ;
2490
2490
2491
- it ( 'accepts an Interface with a subtyped Interface field (interface subtyping union )' , ( ) => {
2491
+ it ( 'accepts an Interface with a subtyped Interface field (union subtyped by interface )' , ( ) => {
2492
2492
const schema = buildSchema ( `
2493
2493
type Query {
2494
2494
test: ChildInterface
0 commit comments