Files
cosmos-explorer/src/Explorer/Controls/FeaturePanel/FeaturePanelComponent.test.tsx
2020-06-16 09:21:44 -05:00

12 lines
301 B
TypeScript

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