import React from "react"; import { render } from "@testing-library/react"; import { FormMessage, FormSection, FormSectionBody, FormSectionHeader, FormSubSection, FormTitle } from ".."; describe("Form structure components", () => { it("renders top-level form structure components", () => { const { asFragment } = render( <> Form message content Form Title Content
Form section body content
Form sub-section content
); expect(asFragment()).toMatchSnapshot(); }); });