-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DON-888 – A/B testing setup + proof of concept #1322
Conversation
* remove placeholder element * make headline copy A/B test variable * make expansion panel detail copy A/B test variable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
activate: (_event: any) => { | ||
// No change from the original form. | ||
console.log('Original test variant active!'); | ||
} | ||
}, | ||
{ | ||
name: environment.matomoAbTest.variantName, | ||
activate: (_event: any) => { | ||
this.alternateCopy = true; | ||
console.log('Copy B test variant active!'); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
activate: (_event: any) => { | |
// No change from the original form. | |
console.log('Original test variant active!'); | |
} | |
}, | |
{ | |
name: environment.matomoAbTest.variantName, | |
activate: (_event: any) => { | |
this.alternateCopy = true; | |
console.log('Copy B test variant active!'); | |
} | |
activate: (_event: unknown) => { | |
// No change from the original form. | |
} | |
}, | |
{ | |
name: environment.matomoAbTest.variantName, | |
activate: (_event: unknown) => { | |
this.alternateCopy = true; | |
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I mentioned on Jira, I think I'd rather keep browser logs on activation, at least for now, to make sure we can diagnose any behaviour we're not expecting.
No description provided.