| 98 | it.effect("non-storage typed failures pass through unchanged", () => |
| 99 | Effect.gen(function* () { |
| 100 | class DomainError { |
| 101 | readonly _tag = "DomainError" as const; |
| 102 | } |
| 103 | const eff = Effect.fail(new DomainError()) as Effect.Effect<never, DomainError>; |
nothing calls this directly
no outgoing calls
no test coverage detected