UNPKG

173 BPlain TextView Raw
1import { formatDay } from "./formatDay";
2
3const date = new Date(2022, 10, 21);
4
5test("should return the formatted day", () => {
6 expect(formatDay(date)).toEqual("21");
7});