blob: e33470a1812635c6c5e00722a4f56c3df28e37a9 [file] [log] [blame]
import { expect, test } from "vitest";
import * as z from "zod/v4";
test("test this binding", () => {
const parse = z.string().parse;
expect(parse("asdf")).toBe("asdf");
});