From f8f9f586d05374e3ed201dd544ecd0b60b277929 Mon Sep 17 00:00:00 2001 From: Demetrios Date: Mon, 9 Mar 2026 16:00:17 +0000 Subject: [PATCH] add an ab test config for allowing the async loading of userIds --- ab-testing/config/abTests.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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");