import {render} from '@testing-library/react'import '@testing-library/jest-dom'test('renders a message', () => { const {container, getByText} = render() expect(getByText('Hello, world!')).toBeInTheDocument() expect(container.firstChild).toMatchInlineSnapshot(`

Hello, World!

`)})