redux-saga-beginner-tutorial
redux-saga-beginner-tutorial copied to clipboard
Redux/Redux-saga beginner tutorial

 
Fix delay can not find in `redux-saga/effects`
error in the following test: `assert.deepEqual( gen.next().value, call(delay, 1000), 'incrementAsync Saga must call delay(1000)' )` this gen.next().value return a promise as value: `{ value: Promise { _c: [], _a: undefined,...
I was following along with the beginner tutorial when I realized that running `npm test` on the `sagas` branch throws the following error: ``` $ npm test > [email protected] test...

There are many misguides(especially in the code example is incomplete or even wrong ) in a Chinese document, I was confused in the beginning.
# 执行npm run test时报错:Error: call: argument fn is undefined or null  # 如下修改代码就正常了  ```js import test from 'tape'; // import { delay } from 'redux-saga' import { put,...
There is an unused action `INCREMENT_IF_ODD` in the `reducers.js` file. Can you please remove this so that it does not cause any confusion.