Skip to content
Open
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 @@ -1535,7 +1535,7 @@
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"eslint": "7.15.0",
"jest": "26.6.3",
"jest": "27.0.0",
"ts-jest": "26.4.4",
Copy link

Copilot AI Nov 24, 2025

Choose a reason for hiding this comment

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

Upgrading jest from 26.6.3 to 27.0.0 is a major version upgrade that introduces breaking changes. The current ts-jest version (26.4.4) is not compatible with jest 27.x. According to ts-jest's compatibility matrix, jest 27.x requires ts-jest 27.x. This incompatibility will cause the tests to fail.

Consider upgrading ts-jest to version 27.x (e.g., "ts-jest": "^27.0.0") to ensure compatibility with jest 27.0.0.

Suggested change
"ts-jest": "26.4.4",
"ts-jest": "^27.0.0",

Copilot uses AI. Check for mistakes.
"typescript": "4.0.2",
"uglify-js": "3.10.0"
Expand Down
Loading