File size: 193 Bytes
cf86710 | 1 2 3 4 5 6 7 8 | import { labelGridcell } from "./labelGridcell";
const day = new Date(2022, 10, 21);
test("return the label", () => {
expect(labelGridcell(day)).toEqual("Monday, November 21st, 2022");
});
|
cf86710 | 1 2 3 4 5 6 7 8 | import { labelGridcell } from "./labelGridcell";
const day = new Date(2022, 10, 21);
test("return the label", () => {
expect(labelGridcell(day)).toEqual("Monday, November 21st, 2022");
});
|