Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ Add the required dev dependencies to your project (use your preferred package ma
npm i -D @oxctl/deployment-test-utils @playwright/test dotenv
```

> [!NOTE]
> Playwright 1.58.0 introduced a [bug](https://github.com/microsoft/playwright/issues/39172) that causes duplicate test title errors. This version of the library constrains Playwright to <1.58.0 to avoid this issue, but if you are using a later version of Playwright in your project, you may need to adjust the version in your `package.json` to avoid conflicts.

Optionally install Playwright browser binaries (if you haven't already):

```bash
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"sideEffects": false,
"peerDependencies": {
"@playwright/test": "^1.55.1",
"@playwright/test": ">=1.36.0 <1.58.0",
"dotenv": "^16.3.1"
},
"peerDependencyMeta": {
Expand Down