Skip to content

Commit b390229

Browse files
committed
add fake test
1 parent 82fb4f9 commit b390229

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

ab-testing/config/abTests.ts

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ const ABTests: ABTest[] = [
3737
description:
3838
"Tests whether we can get the users email, hash it and pass pd value to the userId array",
3939
owners: ["[email protected]"],
40-
expirationDate: `2025-12-15`,
40+
expirationDate: "2026-01-15",
4141
type: "client",
42-
status: "ON",
42+
status: "OFF",
4343
audienceSize: 10 / 100,
4444
audienceSpace: "A",
4545
groups: ["control", "variant"],
@@ -50,14 +50,26 @@ const ABTests: ABTest[] = [
5050
description:
5151
"A hold back test to measure the impact of integrating UID2 module",
5252
owners: ["[email protected]"],
53-
expirationDate: `2026-01-15`,
53+
expirationDate: "2026-01-15",
5454
type: "client",
5555
status: "ON",
5656
audienceSize: 10 / 100,
5757
audienceSpace: "A",
5858
groups: ["control", "variant"],
5959
shouldForceMetricsCollection: true,
6060
},
61+
{
62+
name: "commercial-test-charlotte",
63+
description: "Testing",
64+
owners: ["[email protected]"],
65+
expirationDate: "2025-12-31",
66+
type: "client",
67+
status: "ON",
68+
audienceSize: 0 / 100,
69+
audienceSpace: "B",
70+
groups: ["control", "variant"],
71+
shouldForceMetricsCollection: true,
72+
},
6173
];
6274

6375
const activeABtests = ABTests.filter((test) => test.status === "ON");

0 commit comments

Comments
 (0)