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