AB testing: implement the first A/B experiment - #16129
Merged
Merged
Conversation
|
You can trigger an installable build for these changes by visiting CircleCI here. |
Contributor
Author
|
@aaronyan I hope that by looking at the video and the images you would be able to validate this PR. Also, let me know once we define the exposure event so I can update the code with it. :) |
|
You can trigger optional UI/connected tests for these changes by visiting CircleCI here. |
momo-ozawa
approved these changes
Mar 19, 2021
Comment on lines
+19
to
+20
| let storyAction = actions.remove(at: 2) | ||
| actions.insert(storyAction, at: 0) |
Contributor
There was a problem hiding this comment.
TIL there's a swapAt(::) method
https://developer.apple.com/documentation/swift/array/2893281-swapat
Totally up to you if you want to do remove/insert or swapAt 😀
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related PR: Automattic/Automattic-Tracks-iOS#174
After our successful A/A test (#15789) it's time for our first A/B test!
This PR implements the first A/B test within the FAB button (under My Site).
Also, it fixes a bug identified in the previous version (which was requesting the
assignmentsendpoint even without any active tests)To test
Now you'll need to use a tool like Charles to intercept the proxy.
wpios_create_menu_story_firsttotreatmentYou can see this test in the following video:
verifying_treatment.mov
Exposure event
The PR is still missing the exposure event, I'll add it before merging it.