-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
GIVEN the following store
{
todos: [{ title: "laundry"}, { title: "other stuff"}],
done: [{ title: "groceries" }],
}GIVEN an action that updated the first todo's title has been dispatched producing the following store
{
todos: [{ title: "walk the dog"}, { title: "other stuff"}],
// ^^^^^^^^^^^ That's the only change
done: [{ title: "groceries" }],
}the EXPECTED Diff tab content shows only the changes
{
- todos: [{ title: "laundry" }]
+ todos: [{ title: "walk the dog" }]
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels