import { render, screen } from "@testing-library/react"; import { PopoverRoot } from "./PopoverRoot"; describe("PopoverAnchor", () => { test("renders visibly into the document", () => { render(Test); expect(screen.getByText("Test")).toBeVisible(); }); });