()
| 61 | } |
| 62 | |
| 63 | async function transact() { |
| 64 | const t = await sequelize.transaction({ |
| 65 | deferrable: Deferrable.SET_DEFERRED([class="st">'test']), |
| 66 | isolationLevel: Transaction.ISOLATION_LEVELS.READ_COMMITTED, |
| 67 | type: Transaction.TYPES.DEFERRED, |
| 68 | }); |
| 69 | await t.commit(); |
| 70 | await t.rollback(); |
| 71 | } |
| 72 | |
| 73 | transact(); |
| 74 |
no test coverage detected