diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index 3a16cf9b6c7..6f146ae4789 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -158,6 +158,18 @@ const ABTests: ABTest[] = [ groups: ["control", "variant"], shouldForceMetricsCollection: false, }, + { + name: "commercial-hosted-content", + description: "Preview the Hosted Content pages using dotcom-rendering", + owners: ["commercial.dev@guardian.co.uk"], + expirationDate: "2026-07-01", + type: "server", + status: "ON", + audienceSize: 0 / 100, + audienceSpace: "A", + groups: ["preview"], + shouldForceMetricsCollection: false, + }, ]; const activeABtests = ABTests.filter((test) => test.status === "ON");