*Do you want to request a *feature* or report a *bug*?** - Feature **What is the current behavior?** - If the object supplied to combineReducer has a key whose value is not a function, it simply ignores it. ``` js const rootReducer = combineReducers({ todos: todosReducer, steps: {} // no warning, this is simply ignored }) ``` **What is the expected behavior?** - It should give a warning, letting the user know that each key should point to a reducer function. Please check out this pull-request with proposed changes: https://github.com/reduxjs/redux/pull/3026 I will be more than happy to write a test case for this feature.