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