File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function removedInitialEmitValue(content: string) {
2222}
2323
2424describe ( 'zod' , ( ) => {
25- it ( " non-null and defined" , async ( ) => {
25+ it ( ' non-null and defined' , async ( ) => {
2626 const schema = buildSchema ( /* GraphQL */ `
2727 input PrimitiveInput {
2828 a: ID!
@@ -57,7 +57,7 @@ describe('zod', () => {
5757 ` ) ;
5858 } )
5959
60- it ( " nullish" , async ( ) => {
60+ it ( ' nullish' , async ( ) => {
6161 const schema = buildSchema ( /* GraphQL */ `
6262 input PrimitiveInput {
6363 a: ID
@@ -89,7 +89,7 @@ describe('zod', () => {
8989 ` )
9090 } )
9191
92- it ( " array" , async ( ) => {
92+ it ( ' array' , async ( ) => {
9393 const schema = buildSchema ( /* GraphQL */ `
9494 input ArrayInput {
9595 a: [String]
@@ -118,7 +118,7 @@ describe('zod', () => {
118118 ` )
119119 } )
120120
121- it ( " ref input object" , async ( ) => {
121+ it ( ' ref input object' , async ( ) => {
122122 const schema = buildSchema ( /* GraphQL */ `
123123 input AInput {
124124 b: BInput!
You can’t perform that action at this time.
0 commit comments