© Yariv Gilad
What shall we test?
© Yariv Gilad
Testing Connected Containers
Test Markup
given a set of props, you’d expect a certain markup
Goals
Test Behavior
user interaction, clicks, change, scroll, drag…
© Yariv Gilad
Testing Connected Containers
Wrap with <Provider>
<Provider store={store}> MyContainer </Provider>
Add named export
To allow imports of the container only
without the Connect wrapper
Problem -
Containers are wrapped in a Connect function,
and their root instance is wrapped with <Provider>
© Yariv Gilad
Testing Connected Containers
Spies
© Yariv Gilad
Testing Action Creators
© Yariv Gilad
Testing Reducers
© Yariv Gilad
Testing Thunks
Store
install and use redux-mock-store
Mock two aspects
Ajax requests
install and use nock
© Yariv Gilad