import React from "react"; import { mount } from "enzyme"; import ContextMenu from "."; const baseProps = { options: [], }; describe("", () => { it("renders without error", () => { const wrapper = mount(); expect(wrapper).toExist(); }); /* it("componentWillUnmount() test unmount", () => { const wrapper = mount(); wrapper.unmount(); expect(wrapper).toEqual(wrapper); }); it("simulate handleClick() with change state to close context menu", () => { const wrapper = mount(
); const instance = wrapper.find(ContextMenu).instance(); wrapper.find(ContextMenu).setState({ visible: true }); instance.handleClick(new Event("click", { target: null })); expect(wrapper.find(ContextMenu).state("visible")).toEqual(false); }); it("render with options", () => { const options = [ { label: "test" }, { key: 2, label: "test" }, false, { key: 4, label: "test" }, ]; const wrapper = mount(); wrapper.setState({ visible: true }); expect(wrapper.props().options).toEqual(options); }); it("simulate handleContextMenu(e) to close context menu", () => { const wrapper = mount(); const instance = wrapper.instance(); instance.handleContextMenu(new Event("click", { target: null })); expect(wrapper.state("visible")).toEqual(true); }); it("accepts id", () => { const wrapper = mount(); expect(wrapper.prop("id")).toEqual("testId"); }); it("accepts className", () => { const wrapper = mount(); expect(wrapper.prop("className")).toEqual("test"); }); it("accepts style", () => { const wrapper = mount( ); wrapper.setState({ visible: true }); expect(wrapper.getDOMNode().style).toHaveProperty("color", "red"); }); */ });