Skip to content

Commit

Permalink
chore: bump min Playwright version (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Mar 9, 2023
1 parent 06b3db4 commit ca78b95
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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 @@ -3,7 +3,7 @@
"displayName": "Playwright Test for VSCode",
"description": "Run Playwright Test tests in Visual Studio Code.",
"icon": "images/playwright-logo.png",
"version": "1.0.8",
"version": "1.0.9",
"publisher": "ms-playwright",
"repository": "https://github.com/microsoft/playwright-vscode",
"bugs": {
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ export class Extension {
continue;
}

if (playwrightInfo.version < 1.19) {
if (playwrightInfo.version < 1.28) {
if (showWarnings)
this._vscode.window.showWarningMessage('Playwright Test v1.19 or newer is required');
this._vscode.window.showWarningMessage('Playwright Test v1.28 or newer is required');
continue;
}

Expand Down

0 comments on commit ca78b95

Please sign in to comment.