Skip to content

Commit

Permalink
update type
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzad31 committed Mar 20, 2020
1 parent d80b9db commit a287758
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -65,9 +65,9 @@ describe('fetch saga effect factory', () => {
asyncAction.success,
asyncAction.fail
)(calledAction);
let next = fetchEffect.next().value;
let next = fetchEffect.next();

expect(next).toEqual(call(fetchStatus, calledAction.payload));
expect(next.value).toEqual(call(fetchStatus, calledAction.payload));

const unexpectedErrorResult = put(asyncAction.fail(unExpectedError));

Expand Down

0 comments on commit a287758

Please sign in to comment.