diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index bcaa559115a..cda77022ca3 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -221,7 +221,6 @@ const ABTests: ABTest[] = [ groups: ["a", "b"], shouldForceMetricsCollection: false, }, - { name: "commercial-prebid-failsafe-timeout", description: @@ -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");