import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
describe("Rendering > Tests", () => {
test.skip(`Should render in the dom`, () => {});
test.skip(`Should render an inner width according to the "width" property settings`, () => {});
test.skip(`Should render background properly as provided by the property settings`, () => {});
test.skip(`Should render padding according to the property settings if provided`, () => {});
test.skip(`Should render a thicker border on the EditorObject component container`, () => {});
test.skip(`Should render an "Move Section Up" and a "Move Section Down" option the Editor Object drop down menu`, () => {});
});
describe("Actions > Tests", () => {
test.skip(`Should reposition the section in the page content array appropriately when the "Move up" or "Move down" button is clicked (e.g should trigger updateComponentSettings)`, () => {});
});