Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions ab-testing/config/abTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,19 @@ const ABTests: ABTest[] = [
groups: ["enable"],
shouldForceMetricsCollection: false,
},
{
name: "identity-and-trust-consent-banner-us",
description:
"Test to measure the impact of showing different US consent banners for US users",
owners: ["identitydev@theguardian.com"],
status: "ON",
expirationDate: "2027-01-01",
type: "client",
audienceSize: 0 / 100,
audienceSpace: "A",
groups: ["control", "variant-1", "variant-2"],
shouldForceMetricsCollection: false,
},
];

const activeABtests = ABTests.filter((test) => test.status === "ON");
Expand Down
3 changes: 2 additions & 1 deletion ab-testing/config/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ type Team =
| "fronts-and-curation"
| "growth"
| "feast"
| "martech";
| "martech"
| "identity-and-trust";

type TestName = `${Team}-${string}`;

Expand Down
Loading