import {it, describe, expect} from "vitest" import { render, screen } from '@testing-library/react'; import { Label } from '.'; describe("Label", () => { it("should render the component correctly", () => { render() const labelElement = screen.getByText("Nome da Página") expect(labelElement).toBeInTheDocument() } ) })