import React from 'react'; import { render } from '@testing-library/react'; import { Container } from '../src'; describe('Container', function () { it('renders correctly', () => { const { container } = render( Text ); expect(container.firstChild).toMatchSnapshot(); }); });