-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathabTests.ts
More file actions
240 lines (236 loc) · 6.8 KB
/
Copy pathabTests.ts
File metadata and controls
240 lines (236 loc) · 6.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import type { ABTest } from "./types.ts";
/**
* Tests are defined here. They will be assigned mvt ranges based on the
* size of the test and the number of groups, these ranges may not be contiguous.
*
* For 100% tests to run concurrently with other tests, they should be assigned to different
* test spaces. This means that some users will be in multiple tests at the same time.
*
* Example:
* [Space A]
* - 20% Test control MVT 0-99
* - 20% Test variant MVT 100-199
* - 50% Test control MVT 200-449
* - 50% Test variant MVT 450-699
*
* [Space B]
* - 100% Test control MVT 0-499
* - 100% Test variant MVT 500-999
*/
const ABTests: ABTest[] = [
{
name: "webx-dark-mode-web",
description: "Dark mode accessibility feature test on web",
owners: ["dotcom.platform@theguardian.com"],
status: "ON",
expirationDate: "2027-04-09",
type: "server",
audienceSize: 0 / 100,
groups: ["enable"],
shouldForceMetricsCollection: false,
},
{
name: "growth-holdback-group",
description:
"Test for 5% holdback group that does not qualify for any testing so long as the test is live in the RRCP",
owners: ["growth.dev@guardian.co.uk"],
expirationDate: "2027-01-01",
type: "client",
status: "ON",
audienceSize: 0 / 100,
audienceSpace: "A",
groups: ["control"],
shouldForceMetricsCollection: false,
},
{
name: "growth-auxia-banner",
description: "Use Auxia API for deciding when to show a RR banner",
owners: ["growth.dev@guardian.co.uk"],
expirationDate: "2026-12-01",
type: "client",
status: "ON",
audienceSize: 1,
audienceSpace: "C",
groups: ["control", "variant"],
shouldForceMetricsCollection: true,
},
{
name: "commercial-prebid-price-floor-holdback",
description:
"This test will be the 5% holdback group for the prebid price floor",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-07-16",
type: "client",
status: "OFF",
audienceSize: 5 / 100,
audienceSpace: "A",
groups: ["holdback"],
shouldForceMetricsCollection: true,
},
{
name: "commercial-fronts-ad-increase-ad-limit",
description:
"A test to understand the impact of changing page-level ad limit on fronts",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-09-10",
type: "server",
status: "ON",
audienceSize: 10 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: true,
},
{
name: "commercial-spacefinder-highvalue-section",
description:
"Test to measure the impact on ad density after adding to high value sections in spacefinder",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-09-01",
type: "client",
status: "OFF",
audienceSize: 10 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: true,
},
{
name: "commercial-ozone-hashed-email",
description:
"Pass hashed email to Ozone via pubProvidedId for audience matching",
owners: ["commercial.dev@guardian.co.uk"],
status: "ON",
expirationDate: "2026-09-30",
type: "client",
audienceSize: 0,
audienceSpace: "A",
groups: ["control", "variant"],
},
{
name: "fronts-and-curation-loop-click-through",
description:
"Test impact of click to article via loop videos on fronts",
owners: ["fronts.and.curation@guardian.co.uk"],
status: "ON",
expirationDate: "2026-09-19",
type: "server",
audienceSize: 5 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "fronts-and-curation-click-to-play",
description: "Test click to play longform videos vs autoplay",
owners: ["fronts.and.curation@guardian.co.uk"],
status: "OFF",
expirationDate: "2026-09-28",
type: "server",
audienceSize: 0 / 100,
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "martech-admiral-adblock",
description:
"Control group for Admiral ad blocker - runs the detection script but does not show the modal",
owners: ["martech.dev@guardian.co.uk"],
expirationDate: "2027-01-21",
type: "client",
status: "ON",
audienceSize: 20 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "webx-monitor-group-contamination-v2",
description:
"V2 of test to measure the impact of contamination between groups in ab tests",
owners: ["dotcom.platform@theguardian.com"],
status: "ON",
expirationDate: "2026-09-30",
type: "client",
audienceSize: 10 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "puzzles-new-hub",
description: "Rollout of the new Puzzles Hub experience",
owners: ["puzzles.team@guardian.co.uk"],
status: "ON",
expirationDate: "2026-12-31",
type: "server",
audienceSize: 0 / 100,
audienceSpace: "A",
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "commercial-prebid-transaction-ids",
description:
"Test to measure the impact of submitting Prebid transaction IDs",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-09-30",
type: "client",
status: "ON",
audienceSize: 50 / 100,
audienceSpace: "B",
groups: ["control", "variant"],
shouldForceMetricsCollection: false,
},
{
name: "identity-and-trust-consent-rr-banner-us",
description:
"Test to measure the impact of not showing the consent RR and banner for US users",
owners: ["identitydev@theguardian.com", "martech.dev@guardian.co.uk"],
status: "ON",
expirationDate: "2026-12-01",
type: "client",
audienceSize: 100 / 100,
audienceSpace: "D",
groups: ["control", "variant-1", "variant-2"],
shouldForceMetricsCollection: false,
},
{
name: "fronts-and-curation-editorial-test",
description: "Allow editorial A/B tests to run on web",
owners: [
"fronts.and.curation@guardian.co.uk",
"ab.test.mission@guardian.co.uk",
],
status: "ON",
expirationDate: "2036-08-12",
type: "server",
audienceSize: 100 / 100,
audienceSpace: "E",
groups: ["a", "b"],
shouldForceMetricsCollection: false,
},
{
name: "commercial-prebid-failsafe-timeout",
description: "Gradually roll out the Prebid failsafe timeout feature",
owners: ["commercial.dev@guardian.co.uk"],
expirationDate: "2026-09-30",
type: "client",
status: "ON",
audienceSize: 1 / 100,
audienceSpace: "B",
groups: ["control", "variant"],
shouldForceMetricsCollection: true,
},
{
name: "articles-and-publishing-revamped-immersive-layout",
description: "New grid-based immersive layout for all articles",
owners: ["articles.and.publishing@guardian.co.uk "],
status: "ON",
expirationDate: "2027-08-31",
type: "server",
audienceSize: 0 / 100,
groups: ["enable"],
shouldForceMetricsCollection: false,
},
];
const activeABtests = ABTests.filter((test) => test.status === "ON");
export { ABTests as allABTests, activeABtests };