From 3f01796d1364f61f69699ebd75dfc9a74705ab76 Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Sat, 10 Jun 2023 21:05:36 +0100 Subject: [PATCH] Work when objectscript.conn contains password --- src/commonRunTestsHandler.ts | 1 + src/historyExplorer.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/commonRunTestsHandler.ts b/src/commonRunTestsHandler.ts index 15480f4..85044c5 100644 --- a/src/commonRunTestsHandler.ts +++ b/src/commonRunTestsHandler.ts @@ -103,6 +103,7 @@ export async function commonRunTestsHandler(controller: vscode.TestController, r const server = osAPI.serverForUri(oneUri); const serverSpec: IServerSpec = { username: server.username, + password: server.password, name: server.serverName, webServer: { host: server.host, diff --git a/src/historyExplorer.ts b/src/historyExplorer.ts index 9714f79..fb5b62a 100644 --- a/src/historyExplorer.ts +++ b/src/historyExplorer.ts @@ -55,6 +55,7 @@ export async function serverSpec(item: vscode.TestItem): Promise