We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e3bb5 commit 8c9979dCopy full SHA for 8c9979d
test/e2e/extensions/test-extension/extension.ts
@@ -5,7 +5,7 @@ export function activate(context: vscode.ExtensionContext) {
5
context.subscriptions.push(
6
vscode.commands.registerCommand("codeServerTest.proxyUri", () => {
7
if (process.env.VSCODE_PROXY_URI) {
8
- vscode.window.showInformationMessage(process.env.VSCODE_PROXY_URI)
+ vscode.window.showInformationMessage(`proxyUri: ${process.env.VSCODE_PROXY_URI}`)
9
} else {
10
vscode.window.showErrorMessage("No proxy URI was set")
11
}
0 commit comments