Skip to content

Commit 3ca5925

Browse files
authored
chore: set minimum Playwright version to v1.38 (#487)
1 parent 2eef642 commit 3ca5925

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ This extension integrates Playwright into your VS Code workflow. Here is what it
2121

2222
### Requirements
2323

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

26-
*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]!*
2726

2827
## Install Playwright
2928

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ export class Extension implements RunHooks {
284284
continue;
285285
}
286286

287-
const minimumPlaywrightVersion = 1.28;
287+
const minimumPlaywrightVersion = 1.38;
288288
if (playwrightInfo.version < minimumPlaywrightVersion) {
289289
if (userGesture) {
290290
this._vscode.window.showWarningMessage(

0 commit comments

Comments
 (0)