/// import React from 'react' import { render } from '@testing-library/react' import { describe, it, expect } from 'vitest' import TitleText from '../../src/components/TitleText' describe('TitleText', () => { it('renders children', () => { const { getByText } = render(hello) expect(getByText('hello')).toBeInTheDocument() }) })