prodo-dev / prodo

Prodo is a React framework to build apps faster.
https://docs.prodo.dev
MIT License
114 stars 5 forks source link

Package and example to record tests #188

Closed Onurbon closed 4 years ago

andrejak commented 4 years ago

This also looks slightly strange for actions that dispatch other actions. For example, recording "delete all" action generates this:

await store.dispatch(deleteAll)();
await store.dispatch(deleteItem)("T1");
await store.dispatch(deleteItem)("0.7455664329407665");

I don't think the other two would need to be manually called...