From fd616f6e6786b2eb20c919e2dcf6a8980a3066e7 Mon Sep 17 00:00:00 2001 From: "Brandon Waterloo [MSFT]" <36966225+bwateratmsft@users.noreply.github.com> Date: Thu, 25 Apr 2024 18:23:54 -0400 Subject: [PATCH] Remove some more Azure Account references (#4290) --- package.nls.json | 2 +- src/test/runTest.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.nls.json b/package.nls.json index 873b3dfd53..f9a040027c 100644 --- a/package.nls.json +++ b/package.nls.json @@ -325,7 +325,7 @@ "vscode-docker.walkthrough.dockerStart.runContainer.title": "Run a Container", "vscode-docker.walkthrough.dockerStart.runContainer.description": "You can run any image on your system including those you've built with a Dockerfile.\n[Run Image](command:vscode-docker.images.run)", "vscode-docker.walkthrough.dockerStart.dockerExplorer.title": "Use the Docker Explorer", - "vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries. Also, if the [Azure Account extension](command:extension.open?%22ms-vscode.azure-account%22) is installed, you'll be able to browse your Azure Container Registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)", + "vscode-docker.walkthrough.dockerStart.dockerExplorer.description": "The Docker Explorer makes it easy to manage, troubleshoot, and deploy containerized applications. The Docker Explorer shows a number of Docker resources such as containers, images, volumes, networks, and container registries.\n\nThe right-click menu provides access to commonly used commands for each resource type.\n[Open Docker Explorer](command:workbench.view.extension.dockerView)", "vscode-docker.walkthrough.dockerStart.pushImage.title": "Push an Image to a Container Registry", "vscode-docker.walkthrough.dockerStart.pushImage.description": "The Docker Extension allows you to push your Docker image to Docker Hub, Azure Container Registries and other registry providers.\n[Push an Image](command:vscode-docker.images.push)", "vscode-docker.walkthrough.dockerStart.azDeploy.title": "Deploy to Azure App Service", diff --git a/src/test/runTest.ts b/src/test/runTest.ts index 21a4bdfc58..b8a1279675 100644 --- a/src/test/runTest.ts +++ b/src/test/runTest.ts @@ -5,9 +5,9 @@ // Adapted from https://code.visualstudio.com/api/working-with-extensions/testing-extension -import * as path from 'path'; import { runTests } from '@vscode/test-electron'; import { TestOptions } from '@vscode/test-electron/out/runTest'; +import * as path from 'path'; async function main(): Promise { // The folder containing the Extension Manifest package.json @@ -24,7 +24,7 @@ async function main(): Promise { const options: TestOptions = { extensionDevelopmentPath, extensionTestsPath, - launchArgs: [testWorkspacePath, '--install-extension', 'ms-vscode.azure-account'], + launchArgs: [testWorkspacePath], extensionTestsEnv: { DEBUGTELEMETRY: '1', // eslint-disable-next-line @typescript-eslint/naming-convention