From 8fb20bec0bc2b1cdfd02c752ea2f0741f3317a0d Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Tue, 23 May 2023 12:35:24 -0700 Subject: [PATCH] testing: add context keys for testing/item/context contribution (#182529) For https://github.com/microsoft/vscode-python/issues/21238#issuecomment-1548226209 --- .../contrib/testing/browser/testingExplorerView.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts index 69970f4f193..cceb1ecfe3e 100644 --- a/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts +++ b/src/vs/workbench/contrib/testing/browser/testingExplorerView.ts @@ -1394,6 +1394,12 @@ const getActionableElementActions = ( ], [ TestingContextKeys.supportsContinuousRun.key, supportsCr, + ], [ + TestingContextKeys.controllerId.key, + test.controllerId, + ], [ + TestingContextKeys.testItemExtId.key, + test.item.extId, ]); }