I have unit tests for my reducers. However, when I\'m debugging in the browser, I want to check if my actions have been called correctly and whether the state h
reducers
First of all, you need to define the store in the window object (You can place it in you configureStore file):
window
configureStore
window.store = store;
Then you only need to write in the console the following:
window.store.getState();
Hop this helps.