在JEST中使用参数和返回

时间:2018-08-30 11:52:22

标签: unit-testing jestjs

it('should call clearSession', result => {
  expect(result).toEqual(put(profileActions.clearSession()));
  return true;
});

我是JEST的新手,我在redux-saga的公司项目中看到了以上内容。 参数结果的用途是什么,为什么会有return语句?

0 个答案:

没有答案