import { shallow } from "enzyme";
import React from "react";
import { ToolTipLabelComponent, ToolTipLabelComponentProps } from "./ToolTipLabelComponent";
describe("ToolTipLabelComponent", () => {
const props: ToolTipLabelComponentProps = {
label: "sample tool tip label",
toolTipElement: sample tool tip text
};
it("renders", () => {
const wrapper = shallow();
expect(wrapper).toMatchSnapshot();
});
});