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>
15 lines
349 B
Text
15 lines
349 B
Text
// @ts-ignore TS6133
|
|
import { expect, test } from "vitest";
|
|
|
|
import * as z from "zod/v3";
|
|
import { util } from "../helpers/util.js";
|
|
test("void", () => {
|
|
const v = z.void();
|
|
v.parse(undefined);
|
|
|
|
expect(() => v.parse(null)).toThrow();
|
|
expect(() => v.parse("")).toThrow();
|
|
|
|
type v = z.infer<typeof v>;
|
|
util.assertEqual<v, void>(true);
|
|
});
|