import { render } from '@testing-library/react' import { Tooltip } from '../Tooltip' describe('', () => { it('should render with content', async () => { const content = 'tooltip content' const { getByText } = render() expect(getByText(content)).toBeInTheDocument() }) })