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