Skip to content

Commit 6b72c6d

Browse files
author
George Haberis
committed
remove test AB tests
1 parent 4d78447 commit 6b72c6d

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

ab-testing/abTest.ts

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,7 @@ import type { ABTest } from './types';
1919
* - 100% Test variant MVT 500-999
2020
*/
2121

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-
description: 'Test something interesting on the site',
38-
owners: ['[email protected]'],
39-
status: 'ON',
40-
expirationDate: '2050-12-30',
41-
type: 'server',
42-
audienceSize: 100 / 100,
43-
groups: ['control', 'variant'],
44-
shouldForceMetricsCollection: true,
45-
audienceSpace: 'B',
46-
},
47-
];
22+
const ABTests: ABTest[] = [];
4823

4924
const activeABtests = ABTests.filter((test) => test.status === 'ON');
5025

0 commit comments

Comments
 (0)