import {describe, it, expect} from "vitest" import {screen, render} from "@testing-library/react" import { HelperText } from "." describe("HelperText", () => { it("should render correctly", () => { render( Seu texto de apoio. ) const helperText = screen.getByText("Seu texto de apoio.") expect(helperText).toBeInTheDocument() }) })