Skip to content

Commit 943efe4

Browse files
committed
feat: show info message in test extension
We want to know when the extension loads so we can check in the e2e test.
1 parent 33ee184 commit 943efe4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/e2e/extensions/test-extension/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import * as vscode from "vscode"
22

33
export function activate(context: vscode.ExtensionContext) {
4+
vscode.window.showInformationMessage("test extension loaded")
45
context.subscriptions.push(
56
vscode.commands.registerCommand("codeServerTest.proxyUri", () => {
67
if (process.env.VSCODE_PROXY_URI) {

0 commit comments

Comments
 (0)