import React from "react"; import { render } from "@testing-library/react"; import { Router } from "react-router"; import { createMemoryHistory } from "history"; import App from "./App"; import { Provider } from "react-redux"; import smartHutStore from "./store"; test("redirects to homepage", () => { const history = createMemoryHistory(); render( ); expect(history.location.pathname).toBe("/"); });