({ dispatch }: MiddlewareAPI)
| 145 | } |
| 146 | |
| 147 | function dummyMiddleware({ dispatch }: MiddlewareAPI) { |
| 148 | return (_next: unknown) => (action: any) => dispatch(action, testCallArgs) |
| 149 | } |
| 150 | |
| 151 | const store = createStore( |
| 152 | reducers.todos, |
nothing calls this directly
no test coverage detected