/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at . */ import React from "devtools/client/shared/vendor/react"; import { shallow } from "enzyme"; import { CommandBarButton, debugBtn } from "../"; describe("CommandBarButton", () => { it("renders", () => { const wrapper = shallow( React.createElement(CommandBarButton, { children: [], className: "", }) ); expect(wrapper).toMatchSnapshot(); }); it("renders children", () => { const children = [1, 2, 3, 4]; const wrapper = shallow( React.createElement(CommandBarButton, { children, className: "", }) ); expect(wrapper.find("button").children()).toHaveLength(4); }); }); describe("debugBtn", () => { it("renders", () => { const wrapper = shallow(debugBtn()); expect(wrapper).toMatchSnapshot(); }); it("handles onClick", () => { const onClickSpy = jest.fn(); const wrapper = shallow(debugBtn(onClickSpy)); wrapper.simulate("click"); expect(onClickSpy).toHaveBeenCalled(); }); });