react-day-picker / examples /DefaultMonth.test.tsx
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import React from "react";
import { grid } from "@/test/elements";
import { render } from "@/test/render";
import { setTestTime } from "@/test/setTestTime";
import { DefaultMonth } from "./DefaultMonth";
const today = new Date(2022, 5, 10);
setTestTime(today);
test("should display September 1979", () => {
render(<DefaultMonth />);
expect(grid("September 1979")).toBeInTheDocument();
});