From 5e36a7b71bbadf35a25e3d3f60740ee48a0030b0 Mon Sep 17 00:00:00 2001 From: yogeshwaran-c Date: Thu, 26 Mar 2026 06:35:54 +0530 Subject: [PATCH] fix: rename 'Execute Using Profile' to 'Execute Using Test Profile' Prefix 'Profile' with 'Test' to clarify that this refers to a test profile rather than a general profile, matching the naming convention established for terminal profiles. Closes #227700 --- src/vs/workbench/contrib/testing/browser/testExplorerActions.ts | 2 +- src/vs/workbench/contrib/testing/browser/testingDecorations.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts b/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts index 7eb05f139d633..86bff54cbf145 100644 --- a/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts +++ b/src/vs/workbench/contrib/testing/browser/testExplorerActions.ts @@ -208,7 +208,7 @@ export class RunUsingProfileAction extends Action2 { constructor() { super({ id: TestCommandId.RunUsingProfileAction, - title: localize2('testing.runUsing', 'Execute Using Profile...'), + title: localize2('testing.runUsing', 'Execute Using Test Profile...'), icon: icons.testingDebugIcon, menu: { id: MenuId.TestItem, diff --git a/src/vs/workbench/contrib/testing/browser/testingDecorations.ts b/src/vs/workbench/contrib/testing/browser/testingDecorations.ts index 50bd28bca26d9..c24ea6d6c38aa 100644 --- a/src/vs/workbench/contrib/testing/browser/testingDecorations.ts +++ b/src/vs/workbench/contrib/testing/browser/testingDecorations.ts @@ -1052,7 +1052,7 @@ abstract class RunTestDecoration { }); if (capabilities & TestRunProfileBitset.HasNonDefaultProfile) { - testActions.push(new Action('testing.runUsing', localize('testing.runUsing', 'Execute Using Profile...'), undefined, undefined, async () => { + testActions.push(new Action('testing.runUsing', localize('testing.runUsing', 'Execute Using Test Profile...'), undefined, undefined, async () => { const profile: ITestRunProfile | undefined = await this.commandService.executeCommand('vscode.pickTestProfile', { onlyForTest: test }); if (!profile) { return;