File tree Expand file tree Collapse file tree
internal-packages/run-engine/src/engine/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -414,14 +414,17 @@ const dedicatedUrl = process.env.CROSS_VERSION_DEDICATED_URL;
414414const describeDedicated = dedicatedUrl ? describe : describe . skip ;
415415
416416describeDedicated ( "real dedicated-DB cross-version corpus (env-gated)" , ( ) => {
417- heteroPostgresTest ( "CTE + join/round-trip + keyset vs real dedicated run-ops DB" , async ( { prisma14 } ) => {
418- const dedicated = new PrismaClient ( { datasources : { db : { url : dedicatedUrl ! } } } ) ;
419- try {
420- await assertBlockWaitpointCteIdentical ( prisma14 , dedicated ) ;
421- await assertCompletedWaitpointsRoundtripIdentical ( prisma14 , dedicated ) ;
422- await assertKeysetOrderIdentical ( prisma14 , dedicated ) ;
423- } finally {
424- await dedicated . $disconnect ( ) ;
417+ heteroPostgresTest (
418+ "CTE + join/round-trip + keyset vs real dedicated run-ops DB" ,
419+ async ( { prisma14 } ) => {
420+ const dedicated = new PrismaClient ( { datasources : { db : { url : dedicatedUrl ! } } } ) ;
421+ try {
422+ await assertBlockWaitpointCteIdentical ( prisma14 , dedicated ) ;
423+ await assertCompletedWaitpointsRoundtripIdentical ( prisma14 , dedicated ) ;
424+ await assertKeysetOrderIdentical ( prisma14 , dedicated ) ;
425+ } finally {
426+ await dedicated . $disconnect ( ) ;
427+ }
425428 }
426- } ) ;
429+ ) ;
427430} ) ;
You can’t perform that action at this time.
0 commit comments