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 @@ -265,7 +265,7 @@
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/jest-dom": "^7.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Commit the lockfile update with the dependency bump

This changes package.json to require @testing-library/jest-dom ^7.0.0, but the committed bun.lock still records the root devDependency as ^6.9.1 and resolves @testing-library/jest-dom@6.9.1. I checked the root CI install step at .github/workflows/ci.yml:37, which runs bun install --frozen-lockfile; Bun's help says that flag disallows lockfile changes, so fresh CI/Docker installs from this commit will not be able to reconcile the manifest and lockfile until the lockfile is regenerated and committed.

Useful? React with 👍 / 👎.

"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/bun": "^1.3.11",
Expand Down
Loading