File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
dotcom-rendering/src/experiments Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { adBlockAsk } from './tests/ad-block-ask';
4
4
import { consentlessAds } from './tests/consentless-ads' ;
5
5
import { integrateIma } from './tests/integrate-ima' ;
6
6
import { mpuWhenNoEpic } from './tests/mpu-when-no-epic' ;
7
+ import { optimiseSpacefinderInline } from './tests/optimise-spacefinder-inline' ;
7
8
import { signInGateMainControl } from './tests/sign-in-gate-main-control' ;
8
9
import { signInGateMainVariant } from './tests/sign-in-gate-main-variant' ;
9
10
@@ -17,4 +18,5 @@ export const tests: ABTest[] = [
17
18
integrateIma ,
18
19
mpuWhenNoEpic ,
19
20
adBlockAsk ,
21
+ optimiseSpacefinderInline ,
20
22
] ;
Original file line number Diff line number Diff line change
1
+ import type { ABTest } from '@guardian/ab-core' ;
2
+
3
+ export const optimiseSpacefinderInline : ABTest = {
4
+ id : 'OptimiseSpacefinderInline' ,
5
+ author : '@commercial-dev' ,
6
+ start : '2024-08-08' ,
7
+ expiry : '2024-09-13' ,
8
+ audience : 0 / 100 ,
9
+ audienceOffset : 0 / 100 ,
10
+ audienceCriteria : '' ,
11
+ successMeasure : '' ,
12
+ description : 'Test new spacefinder rules for inline1 ads on desktop.' ,
13
+ variants : [
14
+ {
15
+ id : 'control' ,
16
+ test : ( ) : void => {
17
+ /* no-op */
18
+ } ,
19
+ } ,
20
+ {
21
+ id : 'variant' ,
22
+ test : ( ) : void => {
23
+ /* no-op */
24
+ } ,
25
+ } ,
26
+ ] ,
27
+ canRun : ( ) => true ,
28
+ } ;
You can’t perform that action at this time.
0 commit comments