Skip to main content
Module

x/zod/__tests__/base.test.ts

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
File
// @ts-ignore TS6133import { expect } from "https://deno.land/x/expect@v0.2.6/mod.ts";const test = Deno.test;
import { util } from "../helpers/util.ts";import * as z from "../index.ts";
test("type guard", () => { const stringToNumber = z.string().transform((arg) => arg.length);
const s1 = z.object({ stringToNumber, }); type t1 = z.input<typeof s1>;
const data = { stringToNumber: "asdf" }; const parsed = s1.safeParse(data); if (parsed.success) { util.assertEqual<typeof data, t1>(true); }});
test("test this binding", () => { const callback = (predicate: (val: string) => boolean) => { return predicate("hello"); };
expect(callback((value) => z.string().safeParse(value).success)).toBe(true); // true expect(callback((value) => z.string().safeParse(value).success)).toBe(true); // true});