UNPKG

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