import React from "react"; import { mount } from "enzyme"; import ProgressBar from "."; describe("", () => { it("renders without error", () => { const wrapper = mount( ); expect(wrapper).toExist(); }); });