-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add keywords to pbjsConfig if user is in the prebidKeywords test (#1742)
- Loading branch information
1 parent
e18c29a
commit 758d47c
Showing
3 changed files
with
48 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,29 @@ | ||
import type { ABTest } from '@guardian/ab-core'; | ||
|
||
export const prebidKeywords: ABTest = { | ||
id: 'PrebidKeywords', | ||
author: '@commercial-dev', | ||
start: '2025-01-14', | ||
expiry: '2025-01-31', | ||
audience: 50 / 100, | ||
audienceOffset: 20 / 100, | ||
audienceCriteria: '', | ||
successMeasure: '', | ||
description: | ||
'Test if adding keywords to our Prebid config affects revenue.', | ||
variants: [ | ||
{ | ||
id: 'control', | ||
test: (): void => { | ||
/* no-op */ | ||
}, | ||
}, | ||
{ | ||
id: 'variant', | ||
test: (): void => { | ||
/* no-op */ | ||
}, | ||
}, | ||
], | ||
canRun: () => true, | ||
}; |
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