@@ -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 ( ) // @remap -prod-remove-line-line
58
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-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 ( ) // @remap -prod-remove-line-line
81
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-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 ( ) // @remap -prod-remove-line-line
110
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-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 ( ) // @remap -prod-remove-line-line
147
+ expect ( composeWithDevToolsSpy ) . toHaveBeenCalled ( ) // @remap -prod-remove-line
148
148
expect ( redux . createStore ) . toHaveBeenCalledWith (
149
149
reducer ,
150
150
undefined ,
0 commit comments