(item)
| 48 | }) |
| 49 | |
| 50 | var addItemActionCreator = function (item) { |
| 51 | return { |
| 52 | type: 'ADD_ITEM', |
| 53 | item: item |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | store_0.dispatch(addItemActionCreator({ id: 1234, description: 'anything' })) |
| 58 |
no outgoing calls
no test coverage detected