import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
import Spacing from "./Spacing";
const props = {
onChange: () => null,
};
describe(" Rendering >", () => {
it(`Should render the component in the dom`, () => {
// render();
// expect(screen.queryByTestId("Properties-Spacing")).toBeTruthy();
});
});
describe(" Actions >", () => {});
describe(" Events >", () => {});
describe(" Hooks >", () => {});