Skip to content

Commit

Permalink
3.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed Sep 11, 2022
1 parent 2893e16 commit 3b75ae5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions deno/lib/__tests__/transformer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ test("preprocess", () => {

const value = schema.parse("asdf");
expect(value).toEqual(["asdf"]);
util.assertEqual<typeof schema["_input"], unknown>(true);
});

test("async preprocess", async () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zod",
"version": "3.19.0",
"version": "3.19.1",
"description": "TypeScript-first schema declaration and validation library with static type inference",
"main": "./lib/index.js",
"types": "./index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/__tests__/transformer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ test("preprocess", () => {

const value = schema.parse("asdf");
expect(value).toEqual(["asdf"]);
util.assertEqual<typeof schema["_input"], unknown>(true);
});

test("async preprocess", async () => {
Expand Down

0 comments on commit 3b75ae5

Please sign in to comment.