(run)
| 332 | }); |
| 333 | }, |
| 334 | async transaction(run) { |
| 335 | await init; |
| 336 | |
| 337 | return prisma.$transaction((tx) => |
| 338 | run( |
| 339 | fromPrisma(schema, { |
| 340 | ...config, |
| 341 | isTransaction: true, |
| 342 | prisma: tx, |
| 343 | }), |
| 344 | ), |
| 345 | ); |
| 346 | }, |
| 347 | }); |
| 348 | } |
nothing calls this directly
no test coverage detected