Skip to content

Commit db64f62

Browse files
authored
Merge pull request #12143 from guardian/ei/add-inline1-spacefinder-test
Add 0% test for spacefinder inline1 changes
2 parents f6adc89 + f2cddf3 commit db64f62

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

dotcom-rendering/src/experiments/ab-tests.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { adBlockAsk } from './tests/ad-block-ask';
44
import { consentlessAds } from './tests/consentless-ads';
55
import { integrateIma } from './tests/integrate-ima';
66
import { mpuWhenNoEpic } from './tests/mpu-when-no-epic';
7+
import { optimiseSpacefinderInline } from './tests/optimise-spacefinder-inline';
78
import { signInGateMainControl } from './tests/sign-in-gate-main-control';
89
import { signInGateMainVariant } from './tests/sign-in-gate-main-variant';
910

@@ -17,4 +18,5 @@ export const tests: ABTest[] = [
1718
integrateIma,
1819
mpuWhenNoEpic,
1920
adBlockAsk,
21+
optimiseSpacefinderInline,
2022
];
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
};

0 commit comments

Comments
 (0)