import { render, screen } from "@testing-library/react"; import { InputSearchOtherState } from "./InputSearchOtherState"; import { Icon } from "../icon"; import { Settings } from "@washingtonpost/wpds-assets"; describe("InputSearchOtherState", () => { test("renders visibly into the document", () => { render( } /> ); expect(screen.getByText("test")).toBeInTheDocument(); }); });