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) {
22
22
}
23
23
24
24
describe ( 'zod' , ( ) => {
25
- it ( " non-null and defined" , async ( ) => {
25
+ it ( ' non-null and defined' , async ( ) => {
26
26
const schema = buildSchema ( /* GraphQL */ `
27
27
input PrimitiveInput {
28
28
a: ID!
@@ -57,7 +57,7 @@ describe('zod', () => {
57
57
` ) ;
58
58
} )
59
59
60
- it ( " nullish" , async ( ) => {
60
+ it ( ' nullish' , async ( ) => {
61
61
const schema = buildSchema ( /* GraphQL */ `
62
62
input PrimitiveInput {
63
63
a: ID
@@ -89,7 +89,7 @@ describe('zod', () => {
89
89
` )
90
90
} )
91
91
92
- it ( " array" , async ( ) => {
92
+ it ( ' array' , async ( ) => {
93
93
const schema = buildSchema ( /* GraphQL */ `
94
94
input ArrayInput {
95
95
a: [String]
@@ -118,7 +118,7 @@ describe('zod', () => {
118
118
` )
119
119
} )
120
120
121
- it ( " ref input object" , async ( ) => {
121
+ it ( ' ref input object' , async ( ) => {
122
122
const schema = buildSchema ( /* GraphQL */ `
123
123
input AInput {
124
124
b: BInput!
You can’t perform that action at this time.
0 commit comments