File size: 1,146 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | import { act, renderHook } from "@/test/render";
import { defaultDateLib } from "../classes/DateLib";
import type { DayPickerProps } from "../types";
import { useSingle } from "./useSingle";
describe("useSingle", () => {
it("uses the selected value from props when onSelect is provided", () => {
const mockOnSelect = jest.fn();
const selectedDate = new Date(2023, 9, 1);
const props: DayPickerProps = {
mode: "single",
selected: selectedDate,
onSelect: mockOnSelect,
};
const { result } = renderHook(() => useSingle(props, defaultDateLib));
expect(result.current.selected).toBe(selectedDate);
});
it("uses the internally selected value when onSelect is not provided", () => {
const initialSelectedDate = new Date(2023, 9, 1);
const props: DayPickerProps = {
mode: "single",
selected: initialSelectedDate,
};
const { result } = renderHook(() => useSingle(props, defaultDateLib));
act(() => {
result.current.select?.(new Date(2023, 9, 2), {}, {} as React.MouseEvent);
});
expect(result.current.selected).toEqual(new Date(2023, 9, 2));
});
});
|