标签: unit-testing jestjs
it('should call clearSession', result => { expect(result).toEqual(put(profileActions.clearSession())); return true; });
我是JEST的新手,我在redux-saga的公司项目中看到了以上内容。 参数结果的用途是什么,为什么会有return语句?