Skip to content

Commit 850e8f7

Browse files
committed
Revert "Remove @remap-prod-remove-line comments from configureStore.test.ts"
This reverts commit 45aa461.
1 parent 45aa461 commit 850e8f7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/toolkit/src/tests/configureStore.test.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('configureStore', async () => {
4141
expect.any(Function)
4242
)
4343
expect(redux.applyMiddleware).toHaveBeenCalled()
44-
expect(composeWithDevToolsSpy).toHaveBeenCalled()
44+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
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()
58+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
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()
81+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
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()
110+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
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()
147+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line-line
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)
202+
expect(composeWithDevToolsSpy).toHaveBeenCalledWith(options) // @remap-prod-remove-line
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()
215+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
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()
246+
expect(composeWithDevToolsSpy).toHaveBeenCalled() // @remap-prod-remove-line
247247
expect(redux.createStore).toHaveBeenCalledWith(
248248
reducer,
249249
undefined,

0 commit comments

Comments
 (0)