Skip to content

Commit bb63d90

Browse files
committed
fix: fix format
1 parent 8d16f2b commit bb63d90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/zod.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function removedInitialEmitValue(content: string) {
2222
}
2323

2424
describe('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!

0 commit comments

Comments
 (0)