Effect not logging in Vitest but works in Node

I am running code like that in vitest:

describe("…". () => {
  it("…", () => {
    const main = Effect.forever(
                    Effect
                        .log('logging')
                        .pipe(Effect.sleep('10 millis'))
                  );

     Effect.runFor(main);
  })
})


That does not log anything within vitest, but runs forever when the same code executed directly with node. Are there any known technicalities related to running effects in vitest?
Was this page helpful?