From dd2421021f257f2852fc89f159924a625e9dc5ba Mon Sep 17 00:00:00 2001 From: Anna Beddow Date: Mon, 20 May 2024 16:06:44 +0100 Subject: [PATCH] Remove onward journey test --- common/app/conf/switches/ABTestSwitches.scala | 10 ----- .../common/modules/experiments/ab-tests.ts | 2 - .../experiments/tests/onward-journeys.ts | 45 ------------------- 3 files changed, 57 deletions(-) delete mode 100644 static/src/javascripts/projects/common/modules/experiments/tests/onward-journeys.ts diff --git a/common/app/conf/switches/ABTestSwitches.scala b/common/app/conf/switches/ABTestSwitches.scala index 6ea23d8e168b..12f964550be0 100644 --- a/common/app/conf/switches/ABTestSwitches.scala +++ b/common/app/conf/switches/ABTestSwitches.scala @@ -55,16 +55,6 @@ trait ABTestSwitches { exposeClientSide = true, ) - Switch( - ABTests, - "ab-onward-journeys", - "Test click through rate when there is only one onward journey container shown.", - owners = Seq(Owner.withEmail("dotcom.platform@theguardian.com")), - safeState = Off, - sellByDate = Some(LocalDate.of(2024, 6, 7)), - exposeClientSide = true, - ) - Switch( ABTests, "ab-deeply-read-right-column", diff --git a/static/src/javascripts/projects/common/modules/experiments/ab-tests.ts b/static/src/javascripts/projects/common/modules/experiments/ab-tests.ts index 9bd0213d80f2..106a8440388b 100644 --- a/static/src/javascripts/projects/common/modules/experiments/ab-tests.ts +++ b/static/src/javascripts/projects/common/modules/experiments/ab-tests.ts @@ -1,7 +1,6 @@ import type { ABTest } from '@guardian/ab-core'; import { deeplyReadRightColumn } from './tests/deeply-read-right-column'; import { mpuWhenNoEpic } from './tests/mpu-when-no-epic'; -import { onwardJourneys } from './tests/onward-journeys'; import { remoteRRHeaderLinksTest } from './tests/remote-header-test'; import { signInGateAlternativeWording } from './tests/sign-in-gate-alternative-wording'; import { signInGateMainControl } from './tests/sign-in-gate-main-control'; @@ -15,6 +14,5 @@ export const concurrentTests: readonly ABTest[] = [ signInGateAlternativeWording, remoteRRHeaderLinksTest, mpuWhenNoEpic, - onwardJourneys, deeplyReadRightColumn, ]; diff --git a/static/src/javascripts/projects/common/modules/experiments/tests/onward-journeys.ts b/static/src/javascripts/projects/common/modules/experiments/tests/onward-journeys.ts deleted file mode 100644 index c5c4f0c21bde..000000000000 --- a/static/src/javascripts/projects/common/modules/experiments/tests/onward-journeys.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { ABTest } from '@guardian/ab-core'; - -export const onwardJourneys: ABTest = { - id: 'OnwardJourneys', - start: '2024-05-09', - expiry: '2024-05-16', - author: '@web-experience', - description: - 'Show the user one onward journey containers at a time to see which is the most effective', - audience: 100 / 100, - audienceOffset: 0, - audienceCriteria: 'all users', - dataLinkNames: 'OnwardJourneys', - idealOutcome: - 'Determine which combination of onward journey containers is the most effective', - showForSensitive: true, - canRun: () => true, - variants: [ - { - id: 'control', - test: (): void => { - /* no-op */ - }, - }, - { - id: 'top-row-most-viewed', - test: (): void => { - /* no-op */ - }, - }, - { - id: 'bottom-row-most-viewed', - test: (): void => { - /* no-op */ - }, - }, - { - id: 'most-viewed-only', - test: (): void => { - /* no-op */ - }, - }, - ], - successMeasure: '', -};