wix-incubator / redux-testkit

Complete and opinionated testkit for testing Redux projects (reducers, selectors, actions, thunks)
MIT License
227 stars 20 forks source link

Thunk - negative testing #8

Open d4vidi opened 7 years ago

d4vidi commented 7 years ago

What about adding API for negative testing for verifying no dispatches have been made. For example - this use case: make sure that in case the reddit-server returns an error, action POSTS_UPDATED hasn't been dispatched.

talkol commented 7 years ago

What about expect(dispatches.length).toBe(0) ?