()
| 72 | it('throws when the root client is queried inside a transaction callback, at any await depth', async () => { |
| 73 | const { client } = createFakeClient() |
| 74 | const deeplyNestedHelper = async () => { |
| 75 | await Promise.resolve() |
| 76 | return client.unsafe('select 1 as nested_checkout') |
| 77 | } |
| 78 | |
| 79 | await expect( |
| 80 | client.begin(async () => { |
no test coverage detected