forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperimentGroups.ts
More file actions
32 lines (27 loc) · 1.15 KB
/
experimentGroups.ts
File metadata and controls
32 lines (27 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export const LSControl = 'LS - control';
export const LSEnabled = 'LS - enabled';
// Experiment to check whether to always display the test explorer.
export enum AlwaysDisplayTestExplorerGroups {
control = 'AlwaysDisplayTestExplorer - control',
experiment = 'AlwaysDisplayTestExplorer - experiment'
}
// Experiment to check whether to show "Extension Survey prompt" or not.
export enum ShowExtensionSurveyPrompt {
control = 'ShowExtensionSurveyPrompt - control',
enabled = 'ShowExtensionSurveyPrompt - enabled'
}
// Experiment to check whether the extension should use the new VS Code debug adapter API.
export enum DebugAdapterDescriptorFactory {
control = 'DebugAdapterFactory - control',
experiment = 'DebugAdapterFactory - experiment'
}
// Experiment to check whether the ptvsd launcher should use pre-installed ptvsd wheels for debugging.
export enum DebugAdapterNewPtvsd {
control = 'PtvsdWheels37 - control',
experiment = 'PtvsdWheels37 - experiment'
}
// Dummy experiment added to validate metrics of A/B testing
export enum ValidateABTesting {
control = 'AA_testing - control',
experiment = 'AA_testing - experiment'
}