1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import {Experiments, ExperimentType} from 'sentry/types/experiments';
- /**
- * This is the value an experiment will have when the unit of assignment
- * (organization, user, etc) is not part of any experiment group.
- *
- * This likely indicates they should see nothing, or the original version of
- * what's being tested.
- */
- export const unassignedValue = -1;
- /**
- * Frontend experiment configuration object
- */
- export const experimentList = [
- {
- key: 'OnboardingNewFooterExperiment',
- type: ExperimentType.ORGANIZATION,
- parameter: 'scenario',
- assignments: ['baseline', 'variant1', 'variant2'],
- },
- {
- key: 'ExtendTrialByInvitingMemberExperiment',
- type: ExperimentType.ORGANIZATION,
- parameter: 'exposed',
- assignments: [0, 1],
- },
- {
- key: 'ProjectCreationForAllExperimentV2',
- type: ExperimentType.ORGANIZATION,
- parameter: 'exposed',
- assignments: [0, 1],
- },
- {
- key: 'PrioritySortExperiment',
- type: ExperimentType.USER,
- parameter: 'variant',
- assignments: ['baseline', 'variant1', 'variant2'],
- },
- ] as const;
- export const experimentConfig = experimentList.reduce(
- (acc, exp) => ({...acc, [exp.key]: exp}),
- {}
- ) as Experiments;
|