Never mind the comment

This commit is contained in:
Dan Abramov 2015-10-17 02:35:58 +03:00
parent b4da7aaa48
commit 1540777302

View File

@ -235,7 +235,7 @@ describe('instrument', () => {
it('should replay all the steps when a state is imported', () => { it('should replay all the steps when a state is imported', () => {
let importMonitoredStore = instrument()(createStore)(counter); let importMonitoredStore = instrument()(createStore)(counter);
let importMonitoredLiftedStore = importMonitoredStore.liftedStore; let importMonitoredLiftedStore = importMonitoredStore.liftedStore;
// Import exported state
importMonitoredLiftedStore.dispatch(ActionCreators.importState(exportedState)); importMonitoredLiftedStore.dispatch(ActionCreators.importState(exportedState));
expect(importMonitoredLiftedStore.getState()).toEqual(exportedState); expect(importMonitoredLiftedStore.getState()).toEqual(exportedState);
}); });