/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */

import React from "react";
import "@testing-library/jest-dom/extend-expect";
import { render } from "@testing-library/react";
import DeleteAliasModal from "./DeleteAliasModal";

describe("<DeleteIndexModal /> spec", () => {
  it("renders the component", async () => {
    // the main unit test case is in AliasActions.test.tsx
    render(<DeleteAliasModal selectedItems={[]} visible onDelete={() => {}} onClose={() => {}} />);
    expect(document.body.children).toMatchSnapshot();
  });
});