mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 12:21:23 +00:00
12 lines
301 B
TypeScript
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();
|
|
});
|
|
});
|