import React from "react"; import { shallow } from "enzyme"; import { FeaturePanelComponent } from "./FeaturePanelComponent"; describe("Feature panel", () => { it("renders all flags", () => { const wrapper = shallow(); expect(wrapper).toMatchSnapshot(); }); });