react-day-picker / src /labels /labelGridcell.test.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import { labelGridcell } from "./labelGridcell";
const day = new Date(2022, 10, 21);
test("return the label", () => {
expect(labelGridcell(day)).toEqual("Monday, November 21st, 2022");
});