8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
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");
|
|
});
|