/
Nspection
/
rules-manager-mcp
Обзор
Документация
Войти
/
Nspection
/
rules-manager-mcp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
node_modules/zod/src/v3/tests/parser.test.ts
41 строка
1 KB
Buglov Evgeny
Первый коммит
27 фев 2026, 21:12
27 фев 2026, 21:12
e51dee3
Код
Авторство
О чём код?
// @ts-ignore TS6133 import { expect, test } from "vitest"; import * as z from "zod/v3"; test("parse strict object with unknown keys", () => { expect(() => z .object({ name: z.string() }) .strict() .parse({ name: "bill", unknownKey: 12 } as any) ).toThrow(); }); test("parse nonstrict object with unknown keys", () => { z.object({ name: z.string() }).nonstrict().parse({ name: "bill", unknownKey: 12 }); }); test("invalid left side of intersection", () => { expect(() => z.intersection(z.string(), z.number()).parse(12 as any)).toThrow(); }); test("invalid right side of intersection", () => { expect(() => z.intersection(z.string(), z.number()).parse("12" as any)).toThrow(); }); test("parsing non-array in tuple schema", () => { expect(() => z.tuple([]).parse("12" as any)).toThrow(); }); test("incorrect num elements in tuple", () => { expect(() => z.tuple([]).parse(["asdf"] as any)).toThrow(); }); test("invalid enum value", () => { expect(() => z.enum(["Blue"]).parse("Red" as any)).toThrow(); }); test("parsing unknown", () => { z.string().parse("Red" as unknown); });