Skip to content

Commit ff59aac

Browse files
committed
Update assertions.
1 parent b599f6d commit ff59aac

File tree

1 file changed

+3
-3
lines changed
  • packages/node-integration-tests/suites/tracing/prisma-orm

1 file changed

+3
-3
lines changed

packages/node-integration-tests/suites/tracing/prisma-orm/test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ conditionalTest({ min: 12 })('Prisma ORM Integration', () => {
88
assertSentryTransaction(envelope[2], {
99
transaction: 'Test Transaction',
1010
spans: [
11-
{ description: 'Action: create, Model: User', op: 'prisma' },
12-
{ description: 'Action: findMany, Model: User', op: 'prisma' },
13-
{ description: 'Action: deleteMany, Model: User', op: 'prisma' },
11+
{ description: 'User create', op: 'db.prisma' },
12+
{ description: 'User findMany', op: 'db.prisma' },
13+
{ description: 'User deleteMany', op: 'db.prisma' },
1414
],
1515
});
1616
});

0 commit comments

Comments
 (0)