diff --git a/common/app/conf/switches/ABTestSwitches.scala b/common/app/conf/switches/ABTestSwitches.scala index e6a06700a52f..34cf3df28d13 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-elements-manager", - "Test serving GEM assets in ad slots on page", - owners = Seq(Owner.withEmail("commercial.dev@theguardian.com")), - safeState = Off, - sellByDate = Some(LocalDate.of(2023, 11, 30)), - exposeClientSide = true, - ) - Switch( ABTests, "ab-prebid-kargo", 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 657885f7e349..d6b103cd6cc4 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 { consentlessAds } from './tests/consentlessAds'; import { deeplyReadArticleFooterTest } from './tests/deeply-read-article-footer'; -import { elementsManager } from './tests/elements-manager'; import { integrateIma } from './tests/integrate-ima'; import { prebidKargo } from './tests/prebid-kargo'; import { remoteRRHeaderLinksTest } from './tests/remote-header-test'; @@ -17,6 +16,5 @@ export const concurrentTests: readonly ABTest[] = [ deeplyReadArticleFooterTest, consentlessAds, integrateIma, - elementsManager, prebidKargo, ]; diff --git a/static/src/javascripts/projects/common/modules/experiments/tests/elements-manager.ts b/static/src/javascripts/projects/common/modules/experiments/tests/elements-manager.ts deleted file mode 100644 index 4b0f6240d3cb..000000000000 --- a/static/src/javascripts/projects/common/modules/experiments/tests/elements-manager.ts +++ /dev/null @@ -1,19 +0,0 @@ -import type { ABTest } from '@guardian/ab-core'; -import { noop } from '../../../../../lib/noop'; - -export const elementsManager: ABTest = { - id: 'ElementsManager', - author: '@commercial-dev', - start: '2023-02-23', - expiry: '2023-06-30', - audience: 0 / 100, - audienceOffset: 0 / 100, - audienceCriteria: 'Opt in only', - successMeasure: 'Able to serve GEM assets in ad slots on page', - description: 'Test serving GEM assets in ad slots on page', - variants: [ - { id: 'control', test: noop }, - { id: 'variant', test: noop }, - ], - canRun: () => true, -};