import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
describe(" Rendering >", () => {
test.skip(`Should render in the dom`, () => {});
test.skip(`Should show an array of components in the dom. The number should match the length of the presets array prop`, () => {});
test.skip(`Should show the same component (the one provided in the props) as a child of each component`, () => {});
});
describe(" Events >", () => {
test.skip(`Triggers the onChange() event when a preset is selected`, () => {});
});
describe(" Actions >", () => {
test.skip(`Should change the selected editor item's properties according to the setting of the preset clicked`, () => {});
});
describe(" Hooks >", () => {
test.skip(`Triggers the _onObjectPresetsList_ plugin hook when the list is being established, so plugins can modify this list if necessary`, () => {});
test.skip(`Triggers the _onObjectPresetsChange_ plugin hook when a preset is selected`, () => {});
test.skip(`Triggers the _onObjectPresetsRender_ plugin hook when the ObjectPresets component is rendered`, () => {});
});