Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/testutils": "^4.0.0",
"@types/jest": "^29.2.0",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.11",
Comment on lines +76 to 77
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Keep @types/jest aligned with installed Jest.

Types 30 target Jest 30, but we still install Jest 29. Mixing major versions will break TS typings (missing symbols, incompatible globals). Either hold @types/jest at 29.x or upgrade Jest itself to 30 before merging.

πŸ€– Prompt for AI Agents
In package.json around lines 75 to 76, @types/jest is pinned to v30 while the
project uses Jest v29; this major-version mismatch can break TypeScript typings.
Fix by either downgrading @types/jest to a 29.x range that matches the installed
Jest, or upgrade the installed Jest to v30 and update any Jest config/usage
accordingly; ensure package.json, lockfile, and CI/test scripts are updated
consistently before merging.

"@types/lodash": "^4.17.20",
"@types/react": "^18.0.26",
Expand Down
Loading