()
| 247 | describe("fumaEffect", () => { |
| 248 | it("maps a rejected driver promise onto the classified failure", async () => { |
| 249 | const driverRejection = () => |
| 250 | // oxlint-disable-next-line executor/no-promise-reject -- boundary: fumaEffect's whole contract is adapting a rejected driver promise |
| 251 | Promise.reject(drizzleQueryError(SQL, PARAMS, postgresConnectionError("CONNECTION_ENDED"))); |
| 252 | |
| 253 | const exit = await Effect.runPromiseExit( |
| 254 | fumaEffect("plugin_storage.findFirst", driverRejection), |
nothing calls this directly
no test coverage detected