I ran into a little problem with unit testing and stream data stores.
Since data warehouses are singletones that receive only one instance (when a module is imported), any changes you make to your unit test are saved.
It can (and is) cause me all kinds of headaches.
The solution I am currently implementing is the reset method for each repository that I run in afterEach, but I was wondering / hoping there is an easier way around this?
source share