/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { render } from "@testing-library/react"; import { Route, Router, MemoryRouter } from "react-router-dom"; import { createMemoryHistory } from "history"; import withAdminLayout from "../Admin"; import AdminHome from "../../containers/AdminHome"; const history = createMemoryHistory(); describe("AdminLayout", () => { test("renders the component", async () => { const wrapper = render( , { wrapper: MemoryRouter }, ); expect(wrapper.container).toMatchSnapshot(); }); });