File size: 173 Bytes
cf86710 | 1 2 3 4 5 6 7 8 | import { formatDay } from "./formatDay";
const date = new Date(2022, 10, 21);
test("should return the formatted day", () => {
expect(formatDay(date)).toEqual("21");
});
|
cf86710 | 1 2 3 4 5 6 7 8 | import { formatDay } from "./formatDay";
const date = new Date(2022, 10, 21);
test("should return the formatted day", () => {
expect(formatDay(date)).toEqual("21");
});
|