Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
306 B
Text
12 lines
306 B
Text
import { expect, expectTypeOf, test } from "vitest";
|
|
import * as z from "zod/v4";
|
|
test("void", () => {
|
|
const v = z.void();
|
|
v.parse(undefined);
|
|
|
|
expect(() => v.parse(null)).toThrow();
|
|
expect(() => v.parse("")).toThrow();
|
|
|
|
type v = z.infer<typeof v>;
|
|
expectTypeOf<v>().toEqualTypeOf<void>();
|
|
});
|