import * as React from 'react'; import { render } from '@testing-library/react'; import { Logo } from '../Logo'; describe('', () => { it('should match snapshot', () => { const logo = render(); expect(logo.container.firstChild).toMatchSnapshot(); }); });