import * as React from "react"; import { render, screen, fireEvent, cleanup } from "@testing-library/react"; describe(" Tests", () => { test.skip(`(Rendering) Should render the component in the dom`, () => {}) test.skip(`(Rendering) Should show the same number of items in the left side of the toolbar as the number of items in the leftItems prop`, () => {}) test.skip(`(Rendering) Should show the same number of items in the right side of the toolbar as the number of items in the rightItems prop`, () => {}) test.skip(`(Rendering) Should show a title if one is provided`, () => {}) test.skip(`(Rendering) Should show a child element if one is provided`, () => {}) test.skip(`(Hooks) Should trigger the onComponentRender("Toolbar") plugin hook when the Toolbar is rendering`, () => {}) test.skip(`(Hooks) Should trigger the onListItems("ToolbarLeftItems") plugin hook when the list of Toolbar Left Items are being generated`, () => {}) test.skip(`(Hooks) Should trigger the onListItems("ToolbarRightItems") plugin hook when the list of Toolbar Right Items are being generated`, () => {}) });