diff --git a/common/app/conf/switches/ABTestSwitches.scala b/common/app/conf/switches/ABTestSwitches.scala index 9f81705961e8..36b5b7ca4c31 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-oscars-newsletter-embed", - "Will change the newsletter embed for Oscars articles.", - owners = Seq(Owner.withEmail("commercial.dev@theguardian.com")), - safeState = Off, - sellByDate = Some(LocalDate.of(2024, 4, 2)), - exposeClientSide = true, - ) - Switch( ABTests, "ab-block-supporter-revenue-messaging-sport", 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 381e66df4b4c..6b2f04e3169b 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 { blockSupporterRevenueMessagingSport } from './tests/block-supporter-revenue-messaging-sport'; import { mpuWhenNoEpic } from './tests/mpu-when-no-epic'; -import { oscarsNewsletterEmbed } from './tests/oscars-newsletter-embed'; import { remoteRRHeaderLinksTest } from './tests/remote-header-test'; import { sectionAdDensity } from './tests/section-ad-density'; import { signInGateAlternativeWording } from './tests/sign-in-gate-alternative-wording'; @@ -17,6 +16,5 @@ export const concurrentTests: readonly ABTest[] = [ remoteRRHeaderLinksTest, mpuWhenNoEpic, sectionAdDensity, - oscarsNewsletterEmbed, blockSupporterRevenueMessagingSport, ]; diff --git a/static/src/javascripts/projects/common/modules/experiments/tests/oscars-newsletter-embed.ts b/static/src/javascripts/projects/common/modules/experiments/tests/oscars-newsletter-embed.ts deleted file mode 100644 index d196a9299a74..000000000000 --- a/static/src/javascripts/projects/common/modules/experiments/tests/oscars-newsletter-embed.ts +++ /dev/null @@ -1,34 +0,0 @@ -import type { ABTest } from '@guardian/ab-core'; - -export const oscarsNewsletterEmbed: ABTest = { - id: 'OscarsNewsletterEmbed', - author: '@commercial-dev', - start: '2024-03-07', - expiry: '2024-04-02', - audience: 10 / 100, - audienceOffset: 15 / 100, - audienceCriteria: '', - successMeasure: '', - description: 'Will change the newsletter embed for Oscars articles.', - variants: [ - { - id: 'control', - test: (): void => { - /* no-op */ - }, - }, - { - id: 'variant-1', - test: (): void => { - /* no-op */ - }, - }, - { - id: 'variant-2', - test: (): void => { - /* no-op */ - }, - }, - ], - canRun: () => true, -};