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