import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
import FormBuilder from "./component";
const testId = "FormBuilder-EditorObject";
const props = {};
describe(" Rendering Tests", () => {
afterEach(cleanup);
test.skip(`Should render in the dom`, () => {});
test.skip(`Should render a "live/preview" version of the component in the editor canvas, wrapped in an component`, () => {});
});
describe(" Actions Tests", () => {
afterEach(cleanup);
test.skip(`Should open the FormBuilderPropertyWIndow when the property selector is clicked`, () => {});
});