import { render, screen } from "@testing-library/react"; import { InputSearchEmptyState } from "./InputSearchEmptyState"; describe("InputSearchEmptyState", () => { test("renders visibly into the document", () => { render(); expect(screen.getByText("No results found")).toBeInTheDocument(); }); });