Problem
docs/src/content/docs/reference/playwright.md contains a version format inconsistency in the Visual Regression Testing example.
Line 154 specifies version: "v1.52.0" for mode: cli:
tools:
playwright:
mode: cli
version: "v1.52.0"
However, the configuration table in the same file (line 46–56) documents that CLI mode pins the @playwright/cli npm package, with a default of 0.1.13 — standard npm semver without a v prefix. The v1.52.0 format is used for Playwright browser Docker image releases (MCP/Docker mode), not the npm package.
There is no @playwright/cli npm version 1.52.0.
Impact
Enterprise users copying the visual regression example will apply a Docker-image version string to an npm package pin. This creates confusion when:
- Debugging version pinning failures
- Cross-referencing the configuration table in the same file
- Understanding which package version is actually resolved
Fix
Single file change: docs/src/content/docs/reference/playwright.md
Change line 154 from:
to:
version: "0.1.13" # pins `@playwright/cli` npm package; see Configuration > Version
This aligns the example with the format documented in the configuration table and removes the ambiguous v prefix.
Acceptance Criteria
📊 User experience analysis by Delight · 302.9 AIC · ⌖ 26.3 AIC · ⊞ 19.9K · ◷
Problem
docs/src/content/docs/reference/playwright.mdcontains a version format inconsistency in the Visual Regression Testing example.Line 154 specifies
version: "v1.52.0"formode: cli:However, the configuration table in the same file (line 46–56) documents that CLI mode pins the
@playwright/clinpm package, with a default of0.1.13— standard npm semver without avprefix. Thev1.52.0format is used for Playwright browser Docker image releases (MCP/Docker mode), not the npm package.There is no
@playwright/clinpm version1.52.0.Impact
Enterprise users copying the visual regression example will apply a Docker-image version string to an npm package pin. This creates confusion when:
Fix
Single file change:
docs/src/content/docs/reference/playwright.mdChange line 154 from:
to:
This aligns the example with the format documented in the configuration table and removes the ambiguous
vprefix.Acceptance Criteria
version: "0.1.13"(or another valid@playwright/clinpm version)vprefix in any CLI mode version exampledocs/src/content/docs/reference/playwright.mdis changed