@@ -1065,7 +1065,7 @@ describe('Type System: Object fields must have output types', () => {
1065
1065
} ) ;
1066
1066
1067
1067
describe ( 'Type System: Objects can only implement unique interfaces' , ( ) => {
1068
- it ( 'rejects an Object implementing a non-type values ' , ( ) => {
1068
+ it ( 'rejects an Object implementing a non-type value ' , ( ) => {
1069
1069
const schema = new GraphQLSchema ( {
1070
1070
query : new GraphQLObjectType ( {
1071
1071
name : 'BadObject' ,
@@ -1512,7 +1512,7 @@ describe('Type System: Arguments must have input types', () => {
1512
1512
] ) ;
1513
1513
} ) ;
1514
1514
1515
- it ( 'rejects an required argument that is deprecated' , ( ) => {
1515
+ it ( 'rejects a required argument that is deprecated' , ( ) => {
1516
1516
const schema = buildSchema ( `
1517
1517
directive @BadDirective(
1518
1518
badArg: String! @deprecated
@@ -2610,7 +2610,7 @@ describe('Interfaces must adhere to Interface they implement', () => {
2610
2610
} ) ;
2611
2611
2612
2612
describe ( 'assertValidSchema' , ( ) => {
2613
- it ( 'do not throw on valid schemas' , ( ) => {
2613
+ it ( 'does not throw on valid schemas' , ( ) => {
2614
2614
const schema = buildSchema ( `
2615
2615
type Query {
2616
2616
foo: String
@@ -2619,7 +2619,7 @@ describe('assertValidSchema', () => {
2619
2619
expect ( ( ) => assertValidSchema ( schema ) ) . to . not . throw ( ) ;
2620
2620
} ) ;
2621
2621
2622
- it ( 'include multiple errors into a description ' , ( ) => {
2622
+ it ( 'combines multiple errors' , ( ) => {
2623
2623
const schema = buildSchema ( 'type SomeType' ) ;
2624
2624
expect ( ( ) => assertValidSchema ( schema ) ) . to . throw ( dedent `
2625
2625
Query root type must be provided.
0 commit comments