import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
describe(" Rendering >", () => {
test.todo(`Should render the PositionPadding Component in the dom`);
});
describe(" Events >", () => {
test.todo(
`Triggers the onChange() event when the position/padding changes in some way`
);
});
describe(" Hooks >", () => {
test.skip(`Triggers the _onObjectPreviewRender_ plugin hook when the ObjectPreview component renders`, () => {});
test.skip(`Triggers the _onPositionPaddingChange_ plugin hook when the position/padding changes in some way`, () => {});
});