chore(deps-dev): bump @playwright/test and playwright to 1.61.1#796
Merged
Conversation
PR #660 bumped @playwright/test to 1.61.1 but left the standalone `playwright` devDependency at ^1.60.0 in the root and packages/ui, so the lockfile kept playwright@1.60.0 alongside @playwright/test@1.61.1. Two Playwright installs caused the e2e suite to fail with "Playwright Test did not expect test.describe() to be called here". Align `playwright` to ^1.61.1 everywhere so a single version resolves. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AZv9WCjdYFJ5GagDwUrRTT
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Coverage Report for Core Package Coverage (./packages/core)
File CoverageNo changed files found. |
Contributor
Coverage Report for UI Package Coverage (./packages/ui)
File CoverageNo changed files found. |
Contributor
Coverage Report for CLI Package Coverage (./packages/cli)
File CoverageNo changed files found. |
Contributor
Coverage Report for Auth Package Coverage (./packages/auth)
File CoverageNo changed files found. |
Contributor
Coverage Report for Storage Package Coverage (./packages/storage)
File CoverageNo changed files found. |
Contributor
Coverage Report for RAG Package Coverage (./packages/rag)
File CoverageNo changed files found. |
Contributor
Coverage Report for Storage S3 Package Coverage (./packages/storage-s3)
File CoverageNo changed files found. |
Contributor
Coverage Report for Storage Vercel Package Coverage (./packages/storage-vercel)
File CoverageNo changed files found. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #660.
Problem
Dependabot #660 bumped
@playwright/testfrom 1.60.0 to 1.61.1 but left the standaloneplaywrightdevDependency at^1.60.0in both the rootpackage.jsonandpackages/ui/package.json. As a result the lockfile keptplaywright@1.60.0installed alongside@playwright/test@1.61.1.Two Playwright installs in the tree caused the
e2ejob to fail:Fix
Align the standalone
playwrightdevDependency to^1.61.1in the root andpackages/ui, and regeneratepnpm-lock.yaml. A single Playwright version (1.61.1) now resolves across the workspace, so the e2e runner and the spec files share one@playwright/test.Verified locally:
node_modules/.pnpmcontains only@playwright/test@1.61.1,playwright@1.61.1, andplaywright-core@1.61.1(no 1.60.0), andpnpm manypkg checkpasses.🤖 Generated with Claude Code
https://claude.ai/code/session_01AZv9WCjdYFJ5GagDwUrRTT
Generated by Claude Code