Rocky_Mountain_Vending/.pnpm-store/v10/files/87/00a20bbe2280af439c67d4b3f80a10d3df809fb5482c16690baee456cc20d9d681008c8c23d3476acc676042cc5f7477331df7027bd39cacbd9048e7046faa
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
173 B
Text

import { formatDay } from "./formatDay";
const date = new Date(2022, 10, 21);
test("should return the formatted day", () => {
expect(formatDay(date)).toEqual("21");
});