Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/291f67648922807d55585d1aa87ab8fc2d2020fa704d71583a2c99f41a1ead764aaaff75ce9cbe92e258131ad62941dcf813b423d47368befb03899d821dbe
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

7 lines
167 B
Text

import { labelGrid } from "./labelGrid";
const day = new Date(2022, 10, 21);
test("return the label", () => {
expect(labelGrid(day)).toEqual("November 2022");
});