File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/vs/workbench/contrib/testing/browser Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -566,7 +566,8 @@ class TestingExplorerViewModel extends Disposable {
566566 keyboardNavigationLabelProvider : instantiationService . createInstance ( TreeKeyboardNavigationLabelProvider ) ,
567567 accessibilityProvider : instantiationService . createInstance ( ListAccessibilityProvider ) ,
568568 filter : this . filter ,
569- findWidgetEnabled : false
569+ findWidgetEnabled : false ,
570+ openOnSingleClick : false ,
570571 } ) as TestingObjectTree < FuzzyScore > ;
571572
572573
@@ -612,7 +613,7 @@ class TestingExplorerViewModel extends Disposable {
612613 testService . excluded . onTestExclusionsChanged ,
613614 ) ( this . tree . refilter , this . tree ) ) ;
614615
615- this . _register ( this . tree . onMouseDblClick ( e => {
616+ this . _register ( this . tree . onDidOpen ( e => {
616617 if ( e . element instanceof TestItemTreeElement && ! e . element . children . size && e . element . test . item . uri ) {
617618 commandService . executeCommand ( 'vscode.revealTest' , e . element . test . item . extId ) ;
618619 }
You can’t perform that action at this time.
0 commit comments