function _fetchRecommendations(params) {
   sagaTester.dispatch(
     fetchRecommendations({
       errorHandlerId: errorHandler.id,
       ...params,
     }),
   );
 }
示例#2
0
 dispatchFetchRecommendations(guid: string) {
   this.props.dispatch(
     fetchRecommendations({
       errorHandlerId: this.props.errorHandler.id,
       guid,
     }),
   );
 }