Skip to content

Commit 038cb5d

Browse files
authored
test: Fix E2E tests by pinning dependencies (#16569)
1. Pins `minimatch` in nestjs-11 E2E test app -See nestjs/nest#15273. We can drop this when we bump node to 20.19.0, but for now this should be fine. 2. Pin trpc for nextjs-t3 E2E test app to 11.3.0 - See trpc/trpc#6821
2 parents 6b656b4 + e26e334 commit 038cb5d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,10 @@
4444
"ts-loader": "^9.4.3",
4545
"tsconfig-paths": "^4.2.0",
4646
"typescript": "~5.0.0"
47+
},
48+
"pnpm": {
49+
"overrides": {
50+
"minimatch": "10.0.1"
51+
}
4752
}
4853
}

dev-packages/e2e-tests/test-applications/nextjs-t3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"@sentry/nextjs": "latest || *",
1818
"@t3-oss/env-nextjs": "^0.10.1",
1919
"@tanstack/react-query": "^5.50.0",
20-
"@trpc/client": "^11.0.0-rc.446",
21-
"@trpc/react-query": "^11.0.0-rc.446",
22-
"@trpc/server": "^11.0.0-rc.446",
20+
"@trpc/client": "~11.3.0",
21+
"@trpc/react-query": "~11.3.0",
22+
"@trpc/server": "~11.3.0",
2323
"geist": "^1.3.0",
2424
"next": "14.2.29",
2525
"react": "18.3.1",

0 commit comments

Comments
 (0)