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 update the lineHeight 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 _onLineHeightChange_ plugin hook when the setting changes`, () => {}); test.skip(`Should trigger the _onLineHeightRender_ plugin hook when the component is being rendered`, () => {}); });