Skip to content
Draft
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
14 changes: 13 additions & 1 deletion ab-testing/config/abTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ const ABTests: ABTest[] = [
groups: ["a", "b"],
shouldForceMetricsCollection: false,
},

{
name: "commercial-prebid-failsafe-timeout",
description:
Expand All @@ -235,6 +234,19 @@ const ABTests: ABTest[] = [
groups: ["control", "variant"],
shouldForceMetricsCollection: true,
},
{
name: "commercial-rich-links",
description:
"Test to measure the impact of fixing rich links insert behaviour and reduced restrictions on ad insertion around rich links.",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-09-30",
type: "client",
status: "ON",
audienceSize: 0 / 100,
audienceSpace: "A",
groups: ["control", "variant-fix", "variant-uplift"],
shouldForceMetricsCollection: true,
},
];

const activeABtests = ABTests.filter((test) => test.status === "ON");
Expand Down
Loading