download
raw
628 Bytes
// @ts-ignore TS6133
import { expect, test } from "vitest";
import * as z from "zod/v3";
const stringSchema = z.string();
test("safeparse fail", () => {
const safe = stringSchema.safeParse(12);
expect(safe.success).toEqual(false);
expect(safe.error).toBeInstanceOf(z.ZodError);
});
test("safeparse pass", () => {
const safe = stringSchema.safeParse("12");
expect(safe.success).toEqual(true);
expect(safe.data).toEqual("12");
});
test("safeparse unexpected error", () => {
expect(() =>
stringSchema
.refine((data) => {
throw new Error(data);
})
.safeParse("12")
).toThrow();
});

Xet Storage Details

Size:
628 Bytes
·
Xet hash:
cb89c12eedd7c8469c92a2943ad8daea9d9ee678edf45f7cf8cfa53841ae29b2

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.