-
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 650px to top of desktopRightRailAds when in deeplyReadMostViewed test variant * lint * Update article.ts * Don't add extra height for paid content * Fix typo * Add changeset --------- Co-authored-by: Dominik Lander <dominik.lander@guardian.co.uk>
- Loading branch information
1 parent
3ea8e89
commit 060642b
Showing
4 changed files
with
61 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@guardian/commercial': minor | ||
--- | ||
|
||
Add Deeply Read 0% AB test |
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,35 @@ | ||
import type { ABTest } from '@guardian/ab-core'; | ||
|
||
export const deeplyReadRightColumn: ABTest = { | ||
id: 'DeeplyReadRightColumn', | ||
author: '@dotcom-platform', | ||
start: '2024-04-30', | ||
expiry: '2024-07-31', | ||
audience: 0 / 100, | ||
audienceOffset: 0 / 100, | ||
audienceCriteria: '', | ||
successMeasure: 'Improved click though rate', | ||
description: | ||
'Test the impact of adding deeply read component to the right column.', | ||
variants: [ | ||
{ | ||
id: 'most-viewed-only', | ||
test: (): void => { | ||
/* no-op */ | ||
}, | ||
}, | ||
{ | ||
id: 'deeply-read-and-most-viewed', | ||
test: (): void => { | ||
/* no-op */ | ||
}, | ||
}, | ||
{ | ||
id: 'deeply-read-only', | ||
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