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.
1 parent 4d78447 commit 6b72c6dCopy full SHA for 6b72c6d
ab-testing/abTest.ts
@@ -19,32 +19,7 @@ import type { ABTest } from './types';
19
* - 100% Test variant MVT 500-999
20
*/
21
22
-const ABTests: ABTest[] = [
23
- {
24
- name: 'commercial-dev-client-side-test',
25
- description: 'Test something interesting on the site',
26
- owners: ['[email protected]'],
27
- status: 'ON',
28
- expirationDate: '2050-12-30',
29
- type: 'client',
30
- audienceSize: 100 / 100,
31
- groups: ['control', 'variant'],
32
- shouldForceMetricsCollection: true,
33
- audienceSpace: 'A',
34
- },
35
36
- name: 'commercial-dev-server-side-test',
37
38
39
40
41
- type: 'server',
42
43
44
45
- audienceSpace: 'B',
46
47
-];
+const ABTests: ABTest[] = [];
48
49
const activeABtests = ABTests.filter((test) => test.status === 'ON');
50
0 commit comments