UNPKG

193 BPlain TextView Raw
1import { labelGridcell } from "./labelGridcell";
2
3const day = new Date(2022, 10, 21);
4
5test("return the label", () => {
6 expect(labelGridcell(day)).toEqual("Monday, November 21st, 2022");
7});