Open FredericHeem opened 7 years ago
I think it's because noRethrow
is set to false
and you are not handling the error
With:
const testAction = createActionAsync('test', () => Promise.reject(new Error('an error')));
This is fine:
dispatch(testAction()).catch(err => console.error(err));
While this is not and will display error messages (And kill the process on node@8):
dispatch(testAction());