File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
dev-packages/node-integration-tests/suites/tracing-experimental/prisma-orm Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { parseSemver } from '@sentry/utils';
33
44const NODE_VERSION = parseSemver ( process . versions . node ) ;
55
6- if ( NODE_VERSION . major && NODE_VERSION . major < 12 ) {
6+ if ( NODE_VERSION . major && NODE_VERSION . major < 16 ) {
77 // eslint-disable-next-line no-console
88 console . warn ( `Skipping Prisma tests on Node: ${ NODE_VERSION . major } ` ) ;
99 process . exit ( 0 ) ;
Original file line number Diff line number Diff line change 11import { conditionalTest } from '../../../utils' ;
22import { createRunner } from '../../../utils/runner' ;
33
4- conditionalTest ( { min : 14 } ) ( 'Prisma ORM Tests' , ( ) => {
4+ conditionalTest ( { min : 16 } ) ( 'Prisma ORM Tests' , ( ) => {
55 test ( 'CJS - should instrument PostgreSQL queries from Prisma ORM' , done => {
66 const EXPECTED_TRANSACTION = {
77 transaction : 'Test Transaction' ,
You can’t perform that action at this time.
0 commit comments