Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some more Azure Account references #4290

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading