import React from "react"; import "@testing-library/jest-dom/extend-expect"; import { render } from "@testing-library/react"; import { ArrowIcon } from ".."; import { theme } from "../../../utils/Theme/index"; describe(" test case", () => { test("test id is in the document", () => { const { getByTestId } = render(); expect(getByTestId("arrowIcon")).toBeInTheDocument(); }); test("renders color passed via props", () => { const { getByTestId } = render(); expect(getByTestId("arrowIcon")).toMatchSnapshot(); }); });