Skip to content

Commit 286f6b0

Browse files
authored
test(v8/e2e): Fix node-express test transitive dependency (#15004)
It seems that `@types/qs` v 6.9.18 which was just released breaks this somehow... Backport of #15001
1 parent 798a932 commit 286f6b0

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

dev-packages/e2e-tests/test-applications/node-express/package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@
1515
"@sentry/node": "latest || *",
1616
"@trpc/server": "10.45.2",
1717
"@trpc/client": "10.45.2",
18-
"@types/express": "4.17.17",
19-
"@types/node": "18.15.1",
20-
"express": "4.20.0",
18+
"@types/express": "^4.17.21",
19+
"@types/node": "^18.19.1",
20+
"express": "^4.21.2",
2121
"typescript": "4.9.5",
2222
"zod": "~3.22.4"
2323
},
2424
"devDependencies": {
2525
"@playwright/test": "^1.44.1",
2626
"@sentry-internal/test-utils": "link:../../../test-utils"
2727
},
28+
"resolutions": {
29+
"@types/qs": "6.9.17"
30+
},
2831
"volta": {
2932
"extends": "../../package.json"
3033
}

dev-packages/e2e-tests/test-applications/node-express/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"types": ["node"],
44
"esModuleInterop": true,
5-
"lib": ["es2018"],
5+
"lib": ["es2020"],
66
"strict": true,
77
"outDir": "dist"
88
},

0 commit comments

Comments
 (0)