-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add onwards journey test with one control and 3 variants
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import type { ABTest } from '@guardian/ab-core'; | ||
|
||
export const onwardJourneys: ABTest = { | ||
id: 'OnwardJourneys', | ||
start: '2025-03-01', // update once test is ready to go live | ||
expiry: '2025-12-01', // update once test is ready to go live | ||
author: '@web-experience', | ||
description: | ||
'Show the user one onward journey containers at a time to see which is the most effective', | ||
audience: 25 / 100, | ||
audienceOffset: 0, | ||
audienceCriteria: 'all users', | ||
dataLinkNames: 'OnwardJourneys', | ||
idealOutcome: | ||
'Determine which combination of onward journey containers is the most effective', | ||
showForSensitive: true, | ||
canRun: () => true, | ||
variants: [ | ||
{ | ||
id: 'control', | ||
test: (): void => {}, | ||
}, | ||
{ | ||
id: 'variant-1', | ||
test: (): void => {}, | ||
}, | ||
{ | ||
id: 'variant-2', | ||
test: (): void => {}, | ||
}, | ||
{ | ||
id: 'variant-3', | ||
test: (): void => {}, | ||
}, | ||
], | ||
successMeasure: '', | ||
}; |