@@ -877,10 +877,10 @@ describe('Type System: build schema from introspection', () => {
877
877
} ) ;
878
878
879
879
describe ( 'very deep decorators are not supported' , ( ) => {
880
- it ( 'fails on very deep (> 7 levels) lists' , ( ) => {
880
+ it ( 'fails on very deep (> 8 levels) lists' , ( ) => {
881
881
const schema = buildSchema ( `
882
882
type Query {
883
- foo: [[[[[[[[String]]]]]]]]
883
+ foo: [[[[[[[[[[ String]] ]]]]]]]]
884
884
}
885
885
` ) ;
886
886
@@ -890,10 +890,10 @@ describe('Type System: build schema from introspection', () => {
890
890
) ;
891
891
} ) ;
892
892
893
- it ( 'fails on a very deep (> 7 levels) non-null' , ( ) => {
893
+ it ( 'fails on a very deep (> 8 levels) non-null' , ( ) => {
894
894
const schema = buildSchema ( `
895
895
type Query {
896
- foo: [[[[String!]!]!]!]
896
+ foo: [[[[[ String!] !]!]!]!]
897
897
}
898
898
` ) ;
899
899
@@ -903,11 +903,11 @@ describe('Type System: build schema from introspection', () => {
903
903
) ;
904
904
} ) ;
905
905
906
- it ( 'succeeds on deep (<= 7 levels) types' , ( ) => {
907
- // e.g., fully non-null 3D matrix
906
+ it ( 'succeeds on deep (<= 8 levels) types' , ( ) => {
907
+ // e.g., fully non-null 4D matrix
908
908
const sdl = dedent `
909
909
type Query {
910
- foo: [[[String!]!]!]!
910
+ foo: [[[[ String!] !]!]!]!
911
911
}
912
912
` ;
913
913
0 commit comments