import React from 'react' import { render } from '@testing-library/react' import { Router } from 'react-router-dom' import { createMemoryHistory } from 'history' import App from '../src/App' test('App', () => { const history = createMemoryHistory() const route = '/some-route' history.push(route) render( ) })