We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b599f6d commit ff59aacCopy full SHA for ff59aac
packages/node-integration-tests/suites/tracing/prisma-orm/test.ts
@@ -8,9 +8,9 @@ conditionalTest({ min: 12 })('Prisma ORM Integration', () => {
8
assertSentryTransaction(envelope[2], {
9
transaction: 'Test Transaction',
10
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' },
+ { description: 'User create', op: 'db.prisma' },
+ { description: 'User findMany', op: 'db.prisma' },
+ { description: 'User deleteMany', op: 'db.prisma' },
14
],
15
});
16
0 commit comments