Skip to content

Commit

Permalink
Update engine
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
robstryker committed Oct 3, 2024
1 parent fba9311 commit 217bc62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 @@ -13,7 +13,7 @@
},
"bugs": "https://github.com/redhat-developer/vscode-server-connector/issues/",
"engines": {
"vscode": "^1.56.0"
"vscode": "^1.77.0"
},
"activationEvents": [
"onCommand:server.createServer",
Expand Down
2 changes: 1 addition & 1 deletion test/ui-test/common/util/testUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function showErrorNotifications(): Promise<void> {
const errors = await getNotifications(NotificationType.Error);
if (errors && errors.length > 0) {
const report = await Promise.all(errors.map(async error => {
return `${await error.getSource()}: ${await error.getMessage()} \r\n`;
return `${await error.getType()}: ${await error.getMessage()} \r\n`;
}));
console.log(`Error appeared during creating local server adapter: ${report}`);
}
Expand Down

0 comments on commit 217bc62

Please sign in to comment.