Rinto Jose
Rinto Jose
Delete two items from compile sources: 
StateX maintains it's own state. However you can subscribe to state changes and update state based on your own global state using the following. ```ts import { State } from...
@berserk81, agree. Working on a solution. I will make it available soon.
Here is an example to show how to test StateX store. Hope this helps. https://github.com/rintoj/statex/blob/master/examples/todo-ng-ts/src/store/todo-store.spec.ts
Hi @Nxt3, sorry for the delay. StateX is configured for detached store and view. Therefore when you unit test a view, you must only test for appropriate actions being dispatched....
@blopez2010, give me couple of hours. I will upload a test case for list component
@blopez2010, StateX is configured for detached store and view. Therefore when you unit test a view you must only test for appropriate actions being dispatched. What happens when an action...
Hi @Nxt3, I wrote an article about what is my thought process behind creating this library. Please read https://medium.com/@rintoj/its-2017-time-to-give-redux-another-thought-fa3bc4373df9. Many of the points are not applicable to ng2-redux, but this...
@Nxt3, `ng2-redux` looks pretty much similar to StateX. My idea of this library is to use decorators to trim down the glue code and make the same library available for...