Skip to content

Commit ce824d4

Browse files
committed
.
1 parent d110c04 commit ce824d4

3 files changed

Lines changed: 7 additions & 13 deletions

File tree

dev-packages/e2e-tests/test-applications/nestjs-bullmq/global-setup.mjs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ import { fileURLToPath } from 'url';
55
const __dirname = dirname(fileURLToPath(import.meta.url));
66

77
export 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,

dev-packages/e2e-tests/test-applications/nestjs-bullmq/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
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",
@@ -25,8 +25,8 @@
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
},

dev-packages/e2e-tests/test-applications/nestjs-bullmq/src/app.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)