File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
unittests/common/managers Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ Changed property name used to capture the trigger source of Unit Tests.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export type TestRunTelemetry = {
4444 tool : 'nosetest' | 'pytest' | 'unittest' ;
4545 scope : 'currentFile' | 'all' | 'file' | 'class' | 'function' | 'failed' ;
4646 debugging : boolean ;
47- trigger : 'ui' | 'codelens' | 'commandpalette' | 'auto' ;
47+ triggeredBy : 'ui' | 'codelens' | 'commandpalette' | 'auto' ;
4848 failed : boolean ;
4949} ;
5050export type TestDiscoverytTelemetry = {
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ export abstract class BaseTestManager implements ITestManager {
177177 tool : this . testProvider ,
178178 scope : 'all' ,
179179 debugging : debug === true ,
180- trigger : cmdSource ,
180+ triggeredBy : cmdSource ,
181181 failed : false
182182 } ;
183183 if ( runFailedTests === true ) {
You can’t perform that action at this time.
0 commit comments