@@ -41,7 +41,7 @@ describe('configureStore', async () => {
41
41
expect . any ( Function )
42
42
)
43
43
expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
44
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
44
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
45
45
} )
46
46
} )
47
47
@@ -55,7 +55,7 @@ describe('configureStore', async () => {
55
55
expect ( configureStore ( { reducer } ) ) . toBeInstanceOf ( Object )
56
56
expect ( redux . combineReducers ) . toHaveBeenCalledWith ( reducer )
57
57
expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
58
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
58
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
59
59
expect ( redux . createStore ) . toHaveBeenCalledWith (
60
60
expect . any ( Function ) ,
61
61
undefined ,
@@ -78,7 +78,7 @@ describe('configureStore', async () => {
78
78
configureStore ( { middleware : ( ) => new Tuple ( ) , reducer } )
79
79
) . toBeInstanceOf ( Object )
80
80
expect ( redux . applyMiddleware ) . toHaveBeenCalledWith ( )
81
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
81
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
82
82
expect ( redux . createStore ) . toHaveBeenCalledWith (
83
83
reducer ,
84
84
undefined ,
@@ -107,7 +107,7 @@ describe('configureStore', async () => {
107
107
expect . any ( Function ) , // serializableCheck
108
108
expect . any ( Function ) // actionCreatorCheck
109
109
)
110
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
110
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
111
111
expect ( redux . createStore ) . toHaveBeenCalledWith (
112
112
reducer ,
113
113
undefined ,
@@ -144,7 +144,7 @@ describe('configureStore', async () => {
144
144
configureStore ( { middleware : ( ) => new Tuple ( thank ) , reducer } )
145
145
) . toBeInstanceOf ( Object )
146
146
expect ( redux . applyMiddleware ) . toHaveBeenCalledWith ( thank )
147
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
147
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line-line
148
148
expect ( redux . createStore ) . toHaveBeenCalledWith (
149
149
reducer ,
150
150
undefined ,
@@ -199,7 +199,7 @@ describe('configureStore', async () => {
199
199
Object
200
200
)
201
201
expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
202
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalledWith ( options )
202
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalledWith ( options ) // @remap -prod-remove-line
203
203
expect ( redux . createStore ) . toHaveBeenCalledWith (
204
204
reducer ,
205
205
undefined ,
@@ -212,7 +212,7 @@ describe('configureStore', async () => {
212
212
it ( 'calls createStore with preloadedState' , ( ) => {
213
213
expect ( configureStore ( { reducer } ) ) . toBeInstanceOf ( Object )
214
214
expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
215
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
215
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
216
216
expect ( redux . createStore ) . toHaveBeenCalledWith (
217
217
reducer ,
218
218
undefined ,
@@ -243,7 +243,7 @@ describe('configureStore', async () => {
243
243
} )
244
244
) . toBeInstanceOf ( Object )
245
245
expect ( redux . applyMiddleware ) . toHaveBeenCalled ( )
246
- expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( )
246
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
247
247
expect ( redux . createStore ) . toHaveBeenCalledWith (
248
248
reducer ,
249
249
undefined ,
0 commit comments