File tree Expand file tree Collapse file tree
dev-packages/e2e-tests/test-applications/nestjs-bullmq Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,12 +5,6 @@ import { fileURLToPath } from 'url';
55const __dirname = dirname ( fileURLToPath ( import . meta. url ) ) ;
66
77export default async function globalSetup ( ) {
8- // Clean up any leftover containers from previous runs
9- execSync ( 'docker compose down --volumes' , {
10- cwd : __dirname ,
11- stdio : 'inherit' ,
12- } ) ;
13-
148 // Start Redis via Docker Compose
159 execSync ( 'docker compose up -d --wait' , {
1610 cwd : __dirname ,
Original file line number Diff line number Diff line change 1313 "test:assert" : " pnpm test"
1414 },
1515 "dependencies" : {
16- "@nestjs/common" : " ^10 .0.0" ,
17- "@nestjs/core" : " ^10 .0.0" ,
18- "@nestjs/platform-express" : " ^10 .0.0" ,
19- "@nestjs/bullmq" : " ^10 .0.0" ,
16+ "@nestjs/common" : " ^11 .0.0" ,
17+ "@nestjs/core" : " ^11 .0.0" ,
18+ "@nestjs/platform-express" : " ^11 .0.0" ,
19+ "@nestjs/bullmq" : " ^11 .0.0" ,
2020 "bullmq" : " ^5.0.0" ,
2121 "@sentry/nestjs" : " latest || *" ,
2222 "reflect-metadata" : " ^0.2.0" ,
2525 "devDependencies" : {
2626 "@playwright/test" : " ~1.56.0" ,
2727 "@sentry-internal/test-utils" : " link:../../../test-utils" ,
28- "@nestjs/cli" : " ^10 .0.0" ,
29- "@nestjs/schematics" : " ^10 .0.0" ,
28+ "@nestjs/cli" : " ^11 .0.0" ,
29+ "@nestjs/schematics" : " ^11 .0.0" ,
3030 "@types/node" : " ^18.19.1" ,
3131 "typescript" : " ~5.0.0"
3232 },
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export class AppController {
1212 return { queued : true } ;
1313 }
1414
15- @Get ( 'check-isolation' )
15+ @Get ( 'check-isolation' )
1616 checkIsolation ( ) {
1717 // This endpoint is called after the processor adds a breadcrumb.
1818 // The test verifies that breadcrumbs from the processor do NOT leak here.
You can’t perform that action at this time.
0 commit comments