| 74 | it.effect("non-storage typed failures pass through unchanged", () => |
| 75 | Effect.gen(function* () { |
| 76 | class DomainError { |
| 77 | readonly _tag = "DomainError" as const; |
| 78 | } |
| 79 | const eff = Effect.fail(new DomainError()) as Effect.Effect<never, DomainError>; |
nothing calls this directly
no outgoing calls
no test coverage detected