标签: javascript redux-saga redux-saga-test-plan
我只能模拟生成器函数的返回值
expectSaga(func1) .provide({ call: ({ fn }, next) => (fn === api) ? "this is mock return value" : next() }) .dispatch({ type: "TEST_ACTION" }) .run()
反正还有模拟函数而不是模拟返回值吗?