UNPKG

162 BPlain TextView Raw
1import { formatWeekNumber } from "./formatWeekNumber";
2
3test("should return the formatted week number", () => {
4 expect(formatWeekNumber(10)).toEqual("10");
5});