Fix StartOS 0.4 TypeScript packaging to match SDK API
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
// @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();
|
||||
});
|
||||
Reference in New Issue
Block a user