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 = {
44
44
tool : 'nosetest' | 'pytest' | 'unittest' ;
45
45
scope : 'currentFile' | 'all' | 'file' | 'class' | 'function' | 'failed' ;
46
46
debugging : boolean ;
47
- trigger : 'ui' | 'codelens' | 'commandpalette' | 'auto' ;
47
+ triggeredBy : 'ui' | 'codelens' | 'commandpalette' | 'auto' ;
48
48
failed : boolean ;
49
49
} ;
50
50
export type TestDiscoverytTelemetry = {
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ export abstract class BaseTestManager implements ITestManager {
177
177
tool : this . testProvider ,
178
178
scope : 'all' ,
179
179
debugging : debug === true ,
180
- trigger : cmdSource ,
180
+ triggeredBy : cmdSource ,
181
181
failed : false
182
182
} ;
183
183
if ( runFailedTests === true ) {
You can’t perform that action at this time.
0 commit comments