Skip to content

Commit 338e176

Browse files
committed
revert ab tests to version available in main branch
1 parent 23bb834 commit 338e176

File tree

1 file changed

+2
-38
lines changed

1 file changed

+2
-38
lines changed

ab-testing/config/abTests.ts

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ 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: "2026-01-15",
40+
expirationDate: `2026-01-15`,
4141
type: "client",
4242
status: "OFF",
4343
audienceSize: 10 / 100,
@@ -50,50 +50,14 @@ 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-expired",
63-
description: "Example expired test",
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: false,
72-
},
73-
{
74-
name: "commercial-test-expires-today",
75-
description: "Example test expiring at midnight tonight",
76-
owners: ["[email protected]"],
77-
expirationDate: "2026-01-06",
78-
type: "client",
79-
status: "ON",
80-
audienceSize: 0 / 100,
81-
audienceSpace: "B",
82-
groups: ["control", "variant"],
83-
shouldForceMetricsCollection: false,
84-
},
85-
{
86-
name: "commercial-test-expires-tomorrow",
87-
description: "Example test expiring at midnight tomorrow",
88-
owners: ["[email protected]"],
89-
expirationDate: "2026-01-07",
90-
type: "client",
91-
status: "ON",
92-
audienceSize: 0 / 100,
93-
audienceSpace: "B",
94-
groups: ["control", "variant"],
95-
shouldForceMetricsCollection: false,
96-
},
9761
];
9862

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

0 commit comments

Comments
 (0)