Do we know about any real-world examples of testing async action creators? I struggle to test creators like this: ``` js function add(entity) { return dispatch => { dispatch({ type: ADD, payload: entity }) } } ``` I looked at test here, but it gave me no clue. Do I have to mock dispatch function or something?