import * as React from "react";
import { render, screen, fireEvent, cleanup } from "@testing-library/react";
describe(" Rendering >", () => {
test.skip(`Should render the component in the dom`, () => {});
});
describe(" Actions >", () => {
test.skip(`Should not be able to set the value to one less than the minValue prop`, () => {});
test.skip(`Should not be able to set the value to one more than the maxValue prop`, () => {});
test.skip(`Should update the spacing to the value when the slider has changed`, () => {});
});
describe(" Events >", () => {
test.skip(`Should trigger the onChange() event when the setting changes`, () => {});
});
describe(" Hooks >", () => {
test.skip(`Should trigger the _onSpacingChange_ plugin hook when the setting changes`, () => {});
test.skip(`Should trigger the _onSpacingChange_ plugin hook when the component is being rendered`, () => {});
});