Skip to content

Commit

Permalink
Remove some more Azure Account references (#4290)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwateratmsft committed Apr 25, 2024
1 parent ea21b37 commit fd616f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/test/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> {
// The folder containing the Extension Manifest package.json
Expand All @@ -24,7 +24,7 @@ async function main(): Promise<void> {
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
Expand Down

0 comments on commit fd616f6

Please sign in to comment.