Skip to content

Commit

Permalink
feat: Add distribution test tracking (#5588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutdmour committed Mar 1, 2023
1 parent eac4275 commit 91bd014
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/editor-ui/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,4 +520,14 @@ export const ONBOARDING_EXPERIMENT = {
variant: 'variant',
};

export const EXPERIMENTS_TO_TRACK = [ASSUMPTION_EXPERIMENT.name, ONBOARDING_EXPERIMENT.name];
export const DISTRIBUTION_EXPERIMENT = {
name: '001_distribution_test',
control: 'control',
variant: 'variant',
};

export const EXPERIMENTS_TO_TRACK = [
DISTRIBUTION_EXPERIMENT.name,
ASSUMPTION_EXPERIMENT.name,
ONBOARDING_EXPERIMENT.name,
];

0 comments on commit 91bd014

Please sign in to comment.