Skip to content

Commit

Permalink
chore: bump minimum Playwright extension
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed May 22, 2024
1 parent b54b662 commit c2bfa7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ This extension integrates Playwright into your VS Code workflow. Here is what it

### Requirements

This extension works with [Playwright] version v1.19+ or newer.
This extension works with [Playwright] version v1.38+ or newer.

*If you are looking for the old extension that supported Playwright v1.14+, switch to v0.0.9 of this extension manually. Having said that, we highly recommend using the latest version of [Playwright]!*
*If you are looking for the old extension that supported Playwright v1.14+, switch to e.g. v1.0.22 or v0.0.9 of this extension manually. Having said that, we highly recommend using the latest version of [Playwright]!*

## Install Playwright

Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export class Extension implements RunHooks {
continue;
}

const minimumPlaywrightVersion = 1.28;
const minimumPlaywrightVersion = 1.38;
if (playwrightInfo.version < minimumPlaywrightVersion) {
if (userGesture) {
this._vscode.window.showWarningMessage(
Expand Down

0 comments on commit c2bfa7d

Please sign in to comment.