test(e2e): bump playwright 1.58.2 → 1.62.0 (image + client aligned) - #194
Merged
Conversation
… together) Dependabot's #189 bumped only tests/e2e/Dockerfile to the v1.62.0-noble runner image while tests/e2e/package.json stayed pinned at @playwright/test 1.58.2. Playwright locks browsers to the test-runner version, so the mismatch made the e2e suite fail immediately (tests aborting in ~1ms). This bumps both in lockstep (Dockerfile image + @playwright/test + lockfile) so the runner and the client match. Supersedes #189. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR aligns the Playwright E2E runner image and the @playwright/test npm dependency at v1.62.0 so that the version-locked browser binaries in the container match the Playwright client used by the test suite (superseding #189, which only bumped the image).
Changes:
- Bump
@playwright/testfrom 1.58.2 → 1.62.0 intests/e2e/package.json. - Update
tests/e2e/package-lock.jsonto the Playwright 1.62.0 dependency graph (includingplaywright/playwright-core). - Bump the Playwright Docker runner image tag/digest to
v1.62.0-noble.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| tests/e2e/package.json | Pins @playwright/test to 1.62.0 to match the runner image’s Playwright version. |
| tests/e2e/package-lock.json | Updates the lockfile to Playwright 1.62.0 packages so installed browsers/libs are consistent. |
| tests/e2e/Dockerfile | Moves the test-runner base image to mcr.microsoft.com/playwright:v1.62.0-noble (digest pinned). |
Files not reviewed (1)
- tests/e2e/package-lock.json: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 #189. Dependabot bumped only the runner image; this also bumps
@playwright/test+ lockfile so the version-locked browsers match. CI e2e validates.🤖 Generated with Claude Code