import React from "react"; import { mount } from "enzyme"; import ThemeProvider from "."; const theme = { color: "#333", backgroundColor: "#fff" }; describe("", () => { it("ThemeProvider renders without error", () => { const wrapper = mount( ); expect(wrapper).toExist(); }); });