redux-saga-test-plan icon indicating copy to clipboard operation
redux-saga-test-plan copied to clipboard

`like` matchers not documented

Open Domiii opened this issue 3 years ago • 0 comments

  • [ ] Many matchers allow partial matching using the like flavor, but that is not at all documented.

They are here.

Example:

await expectSaga(saga, triggerAction)
  .put.like(routine.fulfill(fulFillPayload))
  .run();

Domiii avatar Feb 03 '22 12:02 Domiii