test: Create unit tests for react components in packages/ui/components/toast (#10578)
Co-authored-by: gitstart-calcom <gitstart@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>pull/10442/head^2
parent
e5f15cb1df
commit
05020dfa9d
|
@ -62,7 +62,7 @@ export const DefaultToast = ({ message, toastVisible, onClose, toastId }: IToast
|
|||
<span>
|
||||
<Check className="h-4 w-4" />
|
||||
</span>
|
||||
<p>{message}</p>
|
||||
<p data-testid="toast-default">{message}</p>
|
||||
</button>
|
||||
);
|
||||
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
import { render, screen, fireEvent } from "@testing-library/react";
|
||||
import { vi } from "vitest";
|
||||
|
||||
import { SuccessToast, ErrorToast, WarningToast, DefaultToast } from "./showToast";
|
||||
|
||||
describe("Tests for Toast Components", () => {
|
||||
const testToastComponent = (Component: typeof DefaultToast, toastTestId: string) => {
|
||||
const message = "This is a test message";
|
||||
const toastId = "some-id";
|
||||
|
||||
const onCloseMock = vi.fn();
|
||||
render(<Component message={message} toastVisible={true} onClose={onCloseMock} toastId={toastId} />);
|
||||
|
||||
const toast = screen.getByTestId(toastTestId);
|
||||
expect(toast).toBeInTheDocument();
|
||||
expect(toast.textContent).toContain(message);
|
||||
|
||||
const closeButton = screen.getByRole("button");
|
||||
fireEvent.click(closeButton);
|
||||
expect(onCloseMock).toHaveBeenCalledWith(toastId);
|
||||
};
|
||||
|
||||
const toastComponents: [string, typeof DefaultToast, string][] = [
|
||||
["SuccessToast", SuccessToast, "toast-success"],
|
||||
["ErrorToast", ErrorToast, "toast-error"],
|
||||
["WarningToast", WarningToast, "toast-warning"],
|
||||
["DefaultToast", DefaultToast, "toast-default"],
|
||||
];
|
||||
|
||||
test.each(toastComponents)("Should render and close %s component", (_, ToastComponent, expectedClass) => {
|
||||
testToastComponent(ToastComponent, expectedClass);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue