LikeClick() {
this.setState({like: ++this.state.like});
}
expect(
reducer( //здесь объект до
[
{
text: 'Use Redux',
completed: false,
id: 0
}
],
{
type: types.ADD_TODO, //здесь какой экшен вызывается
text: 'Run the tests' //здесь payload
}
)
).toEqual([ //здесь объект после
{
text: 'Run the tests',
completed: false,
id: 1
},
{
text: 'Use Redux',
completed: false,
id: 0
}
])