diff --git a/ab-testing/config/abTests.ts b/ab-testing/config/abTests.ts index 9ce332fec59..040047701d6 100644 --- a/ab-testing/config/abTests.ts +++ b/ab-testing/config/abTests.ts @@ -158,6 +158,19 @@ const ABTests: ABTest[] = [ groups: ["control", "variant"], shouldForceMetricsCollection: false, }, + { + name: "commercial-loading-userids-async", + description: + "Testing whether the asynchronous loading of userIds will alleviate any potential blocking of downstream functions", + owners: ["commercial.dev@guardian.co.uk"], + expirationDate: "2026-03-20", + type: "client", + status: "ON", + audienceSize: 10 / 100, + audienceSpace: "A", + groups: ["control", "variant"], + shouldForceMetricsCollection: false, + }, ]; const activeABtests = ABTests.filter((test) => test.status === "ON");