import React from "react"; import { mount } from "enzyme"; import RoomLogo from "."; const baseProps = { type: "custom", isPrivacy: false, isArchive: false, }; 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"); }); it("accepts style", () => { const wrapper = mount(); expect(wrapper.getDOMNode().style).toHaveProperty("color", "red"); }); it("accepts isPrivacy prop", () => { const wrapper = mount(); expect(wrapper.prop("isPrivacy")).toEqual(true); }); it("accepts isPrivacy prop", () => { const wrapper = mount(); expect(wrapper.prop("isArchive")).toEqual(true); }); });