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