Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/a735624be34f7767b0e2647308d60b2557a48a5c3df1922ca5ddb099b3c092747b130a8b776d06a226e162b6966a069b17db38845cf130a4b69758ff73f622
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

28 lines
830 B
Text

import { CalendarDay } from "./CalendarDay";
import { CalendarMonth } from "./CalendarMonth";
import { CalendarWeek } from "./CalendarWeek";
let month: CalendarMonth;
let date: Date;
let weeks: CalendarWeek[];
const days1 = [
new CalendarDay(new Date(2023, 1, 12), new Date(2023, 1, 1)),
new CalendarDay(new Date(2023, 1, 2023), new Date(2023, 1, 1))
];
const days2 = [
new CalendarDay(new Date(2023, 1, 12), new Date(2023, 1, 1)),
new CalendarDay(new Date(2023, 1, 2023), new Date(2023, 1, 1))
];
beforeEach(() => {
date = new Date();
weeks = [new CalendarWeek(1, days1), new CalendarWeek(2, days2)];
month = new CalendarMonth(date, weeks);
});
it("should have a date property", () => {
expect(month.date).toEqual(date);
});
it("should have a weeks property", () => {
expect(month.weeks).toEqual(weeks);
});