import * as React from "react"; import { render, screen, fireEvent, cleanup } from "@testing-library/react"; import Generator from "./Generator"; import { data } from "./Generator.stories"; describe(" Rendering >", () => { it("Should render the component in the dom", () => { // render(); // expect(screen.queryByTestId("Properties-Generator")).toBeTruthy(); expect(true).toBe(true); }); }); describe(" Actions >", () => {}); describe(" Events >", () => {}); describe(" Hooks >", () => {});