/**
* @jest-environment jsdom
*/
import { fireEvent, screen, render } from "@testing-library/react";
import React from "react";
import { useConfirmDialog } from "./ConfirmDialog";
describe("ConfirmDialog", () => {
it("renders a simple confirm dialog", () => {
const onConfirm = jest.fn();
const Test = () => {
const [toggle, ConfirmDialog] = useConfirmDialog({
titleKey: "Delete app02?",
messageKey:
"If you delete this client, all associated data will be removed.",
continueButtonLabel: "Delete",
onConfirm: onConfirm,
});
return (
<>
>
);
};
render();
fireEvent.click(screen.getByTestId("show"));
const confirmButton = screen.getByTestId("modalConfirm");
expect(confirmButton).toBeInTheDocument();
fireEvent.click(confirmButton);
expect(onConfirm).toBeCalled();
});
});