màj wiki avec retour MES lot-5 AD
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import { expect, expectTypeOf, test } from "vitest";
|
||||
import * as z from "zod/v4";
|
||||
|
||||
test("type inference", () => {
|
||||
const schema = z.string().array();
|
||||
expectTypeOf<z.infer<typeof schema>>().toEqualTypeOf<string[]>();
|
||||
});
|
||||
|
||||
test("url regex", () => {
|
||||
expect((z.url({ hostname: /^example\.com$/ }).safeParse("http://example.org/").error?.issues[0] as any).pattern).toBe(
|
||||
"^example\\.com$"
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user