Skip to content

Commit

Permalink
Add SearchAutocomplete AB test
Browse files Browse the repository at this point in the history
We will shortly be testing a new autocomplete component for site search.

This sets up the AB test with an initial 0/0/100 split (all baseline/
"Z"), to allow us to get the rest of the AB test plumbing into place and
use it as a mini feature flag to start testing the functionality on
production.
  • Loading branch information
csutter committed Nov 5, 2024
1 parent 7aac937 commit 202dac0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dictionaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ active_ab_tests:
Example: true
BankHolidaysTest: true
PopularTasks: true
SearchAutocomplete: true
ab_test_expiries:
Example: 86400
BankHolidaysTest: 86400
PopularTasks: 7862400 # 91 days/ 3 months avg
SearchAutocomplete: 86400
# AB test percentages
example_percentages:
A: 50
Expand All @@ -18,3 +20,7 @@ populartasks_percentages:
B: 33
C: 33
Z: 1
searchautocomplete_percentages:
A: 0 # Autocomplete off (control)
B: 0 # Autocomplete on (experiment)
Z: 100 # Baseline
4 changes: 4 additions & 0 deletions www/ab_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@
- B
- C
- Z
- SearchAutocomplete:
- A # Autocomplete off (control)
- B # Autocomplete on (experiment)
- Z # Baseline

0 comments on commit 202dac0

Please sign in to comment.