()
| 73 | transact(); |
| 74 | |
| 75 | async function nestedTransact() { |
| 76 | const tr = await sequelize.transaction({ |
| 77 | transaction: await sequelize.transaction(), |
| 78 | }); |
| 79 | await tr.commit(); |
| 80 | } |
| 81 | |
| 82 | async function excludeFromTransaction() { |
| 83 | await sequelize.transaction(async t => |
nothing calls this directly
no test coverage detected