I'm encountering a fun little problem with unit testing and the flux data stores.
Since the data stores are singletons that only get instantiated once (when the module is imported) any changes you make in your unit test persist.
This can (and is) causing me all sorts of head aches.
The solution I'm currently implementing is a reset method on each store which I run within the afterEach but I was wondering / hoping there's a simpler way to go around this?