(liftedState = store.liftedStore.getState())
| 199 | } |
| 200 | |
| 201 | function checkForReducerErrors(liftedState = store.liftedStore.getState()) { |
| 202 | if (liftedState.computedStates[liftedState.currentStateIndex].error) { |
| 203 | if (started) relay('STATE', filterStagedActions(liftedState, filters)); |
| 204 | else send(); |
| 205 | return true; |
| 206 | } |
| 207 | return false; |
| 208 | } |
| 209 | |
| 210 | function monitorReducer(state = {}, action) { |
| 211 | lastAction = action.type; |
no test coverage detected