import React from "react"; import { mount } from "enzyme"; import SaveCancelButtons from "."; describe("", () => { it("renders without error", () => { const wrapper = mount( ); expect(wrapper).toExist(); }); it("accepts id", () => { const wrapper = mount( ); expect(wrapper.prop("id")).toEqual("testId"); }); it("accepts className", () => { const wrapper = mount( ); expect(wrapper.prop("className")).toEqual("test"); }); });