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