/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { render } from "@testing-library/react"; import BottomBar from "./BottomBar"; describe(" spec", () => { it("render the component", () => { render(); expect(document.body.children).toMatchSnapshot(); }); });