-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into oa/audio-image-thumbnail
- Loading branch information
Showing
13 changed files
with
163 additions
and
33 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 |
---|---|---|
|
@@ -54,4 +54,14 @@ trait ABTestSwitches { | |
sellByDate = Some(LocalDate.of(2024, 10, 30)), | ||
exposeClientSide = true, | ||
) | ||
|
||
Switch( | ||
ABTests, | ||
"ab-us-big-events", | ||
"Test revenue impact of using shared id in prebid", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = Some(LocalDate.of(2024, 12, 18)), | ||
exposeClientSide = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,7 +213,7 @@ trait PerformanceSwitches { | |
"Shorten the surrogate cache time for recent articles for load testing", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = LocalDate.of(2024, 10, 1), | ||
sellByDate = LocalDate.of(2024, 11, 19), | ||
exposeClientSide = false, | ||
) | ||
|
||
|
@@ -223,7 +223,7 @@ trait PerformanceSwitches { | |
"Shorten the surrogate cache time for older articles for load testing", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = LocalDate.of(2024, 10, 1), | ||
sellByDate = LocalDate.of(2024, 11, 19), | ||
exposeClientSide = false, | ||
) | ||
} |
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
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,11 @@ | ||
package layout.slices | ||
|
||
object ScrollableContainers { | ||
import ContainerDefinition.{ofSlices => slices} | ||
val all: Map[String, ContainerDefinition] = Map( | ||
("scrollable/highlights", slices(Highlights)), | ||
("scrollable/small", slices(ScrollableSmall)), | ||
("scrollable/medium", slices(ScrollableMedium)), | ||
("scrollable/feature", slices(ScrollableFeature)), | ||
) | ||
} |
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
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
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
23 changes: 23 additions & 0 deletions
23
static/src/javascripts/projects/common/modules/experiments/tests/us-big-events.js
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,23 @@ | ||
export const usBigEvents = { | ||
id: 'UsBigEvents', | ||
start: '2024-10-02', | ||
expiry: '2024-12-18', | ||
author: '[email protected]', | ||
description: | ||
'Test the impact of showing the user a component that highlights the Guardians journalism.', | ||
audience: 0, | ||
audienceOffset: 0, | ||
audienceCriteria: 'US-based users that see the US edition.', | ||
successMeasure: 'Users are more likely to engage with the site.', | ||
canRun: () => true, | ||
variants: [ | ||
{ | ||
id: 'control', | ||
test: () => {}, | ||
}, | ||
{ | ||
id: 'variant', | ||
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