Skip to content

Commit 963386d

Browse files
committed
Fix lint
1 parent 3755146 commit 963386d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

deno/lib/__tests__/description.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ test("description should carry over to chained schemas", () => {
2828
});
2929

3030
test("description should not carry over to chained array schema", () => {
31-
const schema = z.string().describe(description)
31+
const schema = z.string().describe(description);
3232

3333
expect(schema.description).toEqual(description);
3434
expect(schema.array().description).toEqual(undefined);
3535
expect(z.array(schema).description).toEqual(undefined);
36-
})
36+
});

src/__tests__/description.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ test("description should carry over to chained schemas", () => {
2727
});
2828

2929
test("description should not carry over to chained array schema", () => {
30-
const schema = z.string().describe(description)
30+
const schema = z.string().describe(description);
3131

3232
expect(schema.description).toEqual(description);
3333
expect(schema.array().description).toEqual(undefined);
3434
expect(z.array(schema).description).toEqual(undefined);
35-
})
35+
});

0 commit comments

Comments
 (0)