Remove default exports
[arvados-workbench2.git] / src / store / side-panel / side-panel-reducer.test.ts
index 5edd9021648dca18dbd0996e41efe8012d06b1f9..e517fc8509d4175859b6ed3381baf7868442c67d 100644 (file)
@@ -2,8 +2,8 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import sidePanelReducer from "./side-panel-reducer";
-import actions from "./side-panel-action";
+import { sidePanelReducer } from "./side-panel-reducer";
+import { sidePanelActions } from "./side-panel-action";
 import { ProjectsIcon } from "../../components/icon/icon";
 
 describe('side-panel-reducer', () => {
@@ -28,7 +28,7 @@ describe('side-panel-reducer', () => {
             }
         ];
 
-        const state = sidePanelReducer(initialState, actions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(initialState[0].id));
+        const state = sidePanelReducer(initialState, sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(initialState[0].id));
         expect(state).toEqual(project);
     });
 
@@ -52,7 +52,7 @@ describe('side-panel-reducer', () => {
             }
         ];
 
-        const state = sidePanelReducer(initialState, actions.TOGGLE_SIDE_PANEL_ITEM_OPEN(initialState[0].id));
+        const state = sidePanelReducer(initialState, sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(initialState[0].id));
         expect(state).toEqual(project);
     });
 
@@ -76,7 +76,7 @@ describe('side-panel-reducer', () => {
             }
         ];
 
-        const state = sidePanelReducer(initialState, actions.RESET_SIDE_PANEL_ACTIVITY(initialState[0].id));
+        const state = sidePanelReducer(initialState, sidePanelActions.RESET_SIDE_PANEL_ACTIVITY(initialState[0].id));
         expect(state).toEqual(project);
     });
-});
\ No newline at end of file
+});