Understanding `TestClock` and `Effect.retry` in Effect Typescript
When using a
I have a simple workflow utility, that uses
However, I have to yield* each retry step individually, so the effect (which updates a ref in the test) runs
If I were to do
Or is that some weird condition where I block the runtime?
TestClock and Effect.retry, why do I have to yield in intervals?I have a simple workflow utility, that uses
Effect.retry: However, I have to yield* each retry step individually, so the effect (which updates a ref in the test) runs
If I were to do
TestClock.adjust(30s) it wouldnt perform each action, and thus not resolve the deferredOr is that some weird condition where I block the runtime?
