From 15407773022c47c03a362d70dc81ea0d832bd40a Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 17 Oct 2015 02:35:58 +0300 Subject: [PATCH] Never mind the comment --- test/instrument.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/instrument.spec.js b/test/instrument.spec.js index e5e61a72..fe8c021a 100644 --- a/test/instrument.spec.js +++ b/test/instrument.spec.js @@ -235,7 +235,7 @@ describe('instrument', () => { it('should replay all the steps when a state is imported', () => { let importMonitoredStore = instrument()(createStore)(counter); let importMonitoredLiftedStore = importMonitoredStore.liftedStore; - // Import exported state + importMonitoredLiftedStore.dispatch(ActionCreators.importState(exportedState)); expect(importMonitoredLiftedStore.getState()).toEqual(exportedState); });