We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b3f56f + 65545fe commit 5c8d825Copy full SHA for 5c8d825
ab-testing/abTest.ts
@@ -19,7 +19,19 @@ import type { ABTest } from './types';
19
* - 100% Test variant MVT 500-999
20
*/
21
22
-const ABTests: ABTest[] = [];
+const ABTests: ABTest[] = [
23
+ {
24
+ name: 'commercial-prebid-v10',
25
+ description: 'Testing Prebid.js v10 integration on DCR',
26
+ owners: ['[email protected]'],
27
+ status: 'ON',
28
+ expirationDate: '2025-12-30',
29
+ type: 'client',
30
+ audienceSize: 0 / 100,
31
+ groups: ['control', 'variant'],
32
+ shouldForceMetricsCollection: true,
33
+ },
34
+];
35
36
const activeABtests = ABTests.filter((test) => test.status === 'ON');
37
0 commit comments