// import * as React from "react"; // import { render, screen, fireEvent, cleanup } from "@testing-library/react"; // import Caption from "./Caption"; // import { CaptionProps } from "./types"; // const props: CaptionProps = { // value: "This is a test", // // style: { padding: 50, height: 500 }, // onChange: (): any => null, // }; describe(" Rendering >", () => { it(`Should render the component in the dom`, () => { // render(
); // expect(screen.queryByTestId("Properties-Caption")).toBeTruthy(); expect(true).toBe(true); }); }); describe(" Actions >", () => {}); describe(" Events >", () => {}); describe(" Hooks >", () => {});