From 06f80841220593f88d208f303c6116d9814b1ae8 Mon Sep 17 00:00:00 2001 From: Charlotte Date: Tue, 10 Mar 2026 15:53:45 +0000 Subject: [PATCH] add 0% test for hosted content preview --- ab-testing/config/abTests.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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");