Skip to content

Commit

Permalink
test(client): enable missing itx tests with mini-proxy (#18445)
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Mar 24, 2023
1 parent 1758ff0 commit b8cf730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -42,7 +42,7 @@ testMatrix.setupTestSuite((_suiteConfig, _suiteMeta, clientMeta) => {
expect(record).toBeNull()
})

testIf(!clientMeta.dataProxy)('works with interactive transactions', async () => {
test('works with interactive transactions', async () => {
const newEmail = faker.internet.email()
const result = prisma.$transaction(async (prisma) => {
await prisma.user.create({ data: { email: newEmail } })
Expand Down
Expand Up @@ -42,7 +42,7 @@ testMatrix.setupTestSuite((_suiteConfig, _suiteMeta, clientMeta) => {
expect(record).toBeNull()
})

testIf(!clientMeta.dataProxy)('works with interactive transactions', async () => {
test('works with interactive transactions', async () => {
const newEmail = faker.internet.email()
const result = prisma.$transaction(async (prisma) => {
await prisma.user.create({ data: { email: newEmail } })
Expand Down

0 comments on commit b8cf730

Please sign in to comment.