File size: 220 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 | import { getMonth } from "./getMonth.js";
const tishrei5785 = new Date(2024, 9, 3);
describe("hebrew getMonth", () => {
test("returns Hebrew month index", () => {
expect(getMonth(tishrei5785)).toBe(0);
});
});
|