import { render } from "@testing-library/react"; import { FluentOrText } from "content-src/components/FluentOrText/FluentOrText"; describe("", () => { it("should render with a string message", () => { const { getByText } = render(); expect(getByText("Hello")).toBeInTheDocument(); }); });