Skip to content

Commit

Permalink
Enable nested transaction tests for TiDB
Browse files Browse the repository at this point in the history
  • Loading branch information
dankochetov committed Jun 6, 2024
1 parent fda83c5 commit aeaf226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/tests/tidb-serverless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,7 @@ test('transaction rollback', async () => {
await db.execute(sql`drop table ${users}`);
});

test.skip('nested transaction', async () => {
test.only('nested transaction', async () => {
const users = mysqlTable('users_nested_transactions', {
id: serial('id').primaryKey(),
balance: int('balance').notNull(),
Expand All @@ -1896,7 +1896,7 @@ test.skip('nested transaction', async () => {
await db.execute(sql`drop table ${users}`);
});

test.skip('nested transaction rollback', async () => {
test.only('nested transaction rollback', async () => {
const users = mysqlTable('users_nested_transactions_rollback', {
id: serial('id').primaryKey(),
balance: int('balance').notNull(),
Expand Down

0 comments on commit aeaf226

Please sign in to comment.