@@ -41,7 +41,7 @@ describe('configureStore', async () => {
4141 expect . any ( Function )
4242 )
4343 expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
44- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
44+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
4545 } )
4646 } )
4747
@@ -55,7 +55,7 @@ describe('configureStore', async () => {
5555 expect ( configureStore ( { reducer } ) ) . toBeInstanceOf ( Object )
5656 expect ( redux . combineReducers ) . toHaveBeenCalledWith ( reducer )
5757 expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
58- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
58+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
5959 expect ( redux . createStore ) . toHaveBeenCalledWith (
6060 expect . any ( Function ) ,
6161 undefined ,
@@ -78,7 +78,7 @@ describe('configureStore', async () => {
7878 configureStore ( { middleware : ( ) => new Tuple ( ) , reducer } )
7979 ) . toBeInstanceOf ( Object )
8080 expect ( redux . applyMiddleware ) . toHaveBeenCalledWith ( )
81- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
81+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
8282 expect ( redux . createStore ) . toHaveBeenCalledWith (
8383 reducer ,
8484 undefined ,
@@ -107,7 +107,7 @@ describe('configureStore', async () => {
107107 expect . any ( Function ) , // serializableCheck
108108 expect . any ( Function ) // actionCreatorCheck
109109 )
110- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
110+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
111111 expect ( redux . createStore ) . toHaveBeenCalledWith (
112112 reducer ,
113113 undefined ,
@@ -144,7 +144,7 @@ describe('configureStore', async () => {
144144 configureStore ( { middleware : ( ) => new Tuple ( thank ) , reducer } )
145145 ) . toBeInstanceOf ( Object )
146146 expect ( redux . applyMiddleware ) . toHaveBeenCalledWith ( thank )
147- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
147+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
148148 expect ( redux . createStore ) . toHaveBeenCalledWith (
149149 reducer ,
150150 undefined ,
@@ -199,7 +199,7 @@ describe('configureStore', async () => {
199199 Object
200200 )
201201 expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
202- expect ( composeWithDevToolsSpy ) . toHaveBeenCalledWith ( options ) // @remap -prod-remove-line
202+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalledWith ( options )
203203 expect ( redux . createStore ) . toHaveBeenCalledWith (
204204 reducer ,
205205 undefined ,
@@ -212,7 +212,7 @@ describe('configureStore', async () => {
212212 it ( 'calls createStore with preloadedState' , ( ) => {
213213 expect ( configureStore ( { reducer } ) ) . toBeInstanceOf ( Object )
214214 expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
215- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
215+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
216216 expect ( redux . createStore ) . toHaveBeenCalledWith (
217217 reducer ,
218218 undefined ,
@@ -243,7 +243,7 @@ describe('configureStore', async () => {
243243 } )
244244 ) . toBeInstanceOf ( Object )
245245 expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
246- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
246+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
247247 expect ( redux . createStore ) . toHaveBeenCalledWith (
248248 reducer ,
249249 undefined ,
0 commit comments