import { Effect, Scope } from "effect"; export function testEffect(self: Effect.Effect) { return async () => { await Effect.runPromise(Effect.scoped(self)); }; }