Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ab-testing/config/abTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,17 @@ const ABTests: ABTest[] = [
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "puzzles-new-hub",
description: "Rollout of the new Puzzles Hub experience",
owners: ["puzzles.team@guardian.co.uk"],
status: "ON",
expirationDate: "2026-12-31",
type: "server",
audienceSize: 0 / 100,
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
];

const activeABtests = ABTests.filter((test) => test.status === "ON");
Expand Down
3 changes: 2 additions & 1 deletion ab-testing/config/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ type Team =
| "fronts-and-curation"
| "growth"
| "feast"
| "martech";
| "martech"
| "puzzles";

type TestName = `${Team}-${string}`;

Expand Down
Loading