Hey @TylorS ! Thanks for very useful lib π
Right now i'm using somewhat a workaround like this
const [timer, scheduler] = createVirtualScheduler();
const advanceTasks = (value = 0) => timer.progressTimeBy(value);
...to propagate tasks (even those that don't have explicit delays).
So i have to call advanceTasks() each time i want to stream to be resolved.
I wonder if there's a batter approach to do that.