Skip to content

Commit

Permalink
Merge pull request #16 from gjsjohnmurray/plum-snail
Browse files Browse the repository at this point in the history
Work when objectscript.conn contains password
  • Loading branch information
gjsjohnmurray authored Jun 10, 2023
2 parents e941fd5 + 3f01796 commit 5fc3221
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/commonRunTestsHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
1 change: 1 addition & 0 deletions src/historyExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export async function serverSpec(item: vscode.TestItem): Promise<IServerSpec | u
const server = osAPI.serverForUri(item.uri);
const serverSpec: IServerSpec = {
username: server.username,
password: server.password,
name: server.serverName,
webServer: {
host: server.host,
Expand Down

0 comments on commit 5fc3221

Please sign in to comment.