Add data explorer launcher (#23)

* Initial migration from ADO

* Bug fixes

* Fix bugs. Make active area smaller and require shift + ctrl + dbl click

* Add missing features

* Switch from HashMap to Map as it is already polyfilled
This commit is contained in:
Laurent Nguyen
2020-06-15 10:50:55 +02:00
committed by GitHub
parent f8f1df4183
commit d70e30c4fc
8 changed files with 705 additions and 1 deletions

View File

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