mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-07 11:36:47 +00:00
Migrate SidePanel state to Zustand (#799)
Co-authored-by: hardiknai-techm <HN00734461@TechMahindra.com>
This commit is contained in:
@@ -9,7 +9,6 @@ describe("PaneContainerComponent test", () => {
|
||||
panelContent: <div></div>,
|
||||
isOpen: true,
|
||||
isConsoleExpanded: false,
|
||||
closePanel: undefined,
|
||||
};
|
||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
@@ -21,7 +20,6 @@ describe("PaneContainerComponent test", () => {
|
||||
panelContent: undefined,
|
||||
isOpen: true,
|
||||
isConsoleExpanded: false,
|
||||
closePanel: undefined,
|
||||
};
|
||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
@@ -33,7 +31,6 @@ describe("PaneContainerComponent test", () => {
|
||||
panelContent: <div></div>,
|
||||
isOpen: true,
|
||||
isConsoleExpanded: true,
|
||||
closePanel: undefined,
|
||||
};
|
||||
const wrapper = shallow(<PanelContainerComponent {...panelContainerProps} />);
|
||||
expect(wrapper).toMatchSnapshot();
|
||||
|
||||
Reference in New Issue
Block a user