import React from 'react' import { render } from '@testing-library/react' import Layout from './Layout' describe('Layout', () => { it('renders without crashing', () => { const { container } = render(Hello) expect(container.firstChild).toBeInTheDocument() }) })