jest.mock("../Contexts/UserContext"); import React from "react"; import { render, cleanup } from "@testing-library/react"; import GeneralConfirmation from "./index"; import addSnapshotSerializer from "../../utils/snapshot"; describe("General Confirmation Modal", () => { beforeAll(() => { addSnapshotSerializer(expect); }); it("Should render", () => { const { container } = render( {}} message="Test Message" title="hello" actionFunction={()=>{}}/> ); expect(container).toMatchSnapshot(); cleanup(); }); });