diff --git a/libs/blocks/ost/ctaTextOption.js b/libs/blocks/ost/ctaTextOption.js index 1fa7450362..23dc858cb0 100644 --- a/libs/blocks/ost/ctaTextOption.js +++ b/libs/blocks/ost/ctaTextOption.js @@ -3,6 +3,7 @@ const ctaTextOption = { { id: 'buy-now', name: 'Buy now' }, { id: 'free-trial', name: 'Free trial' }, { id: 'start-free-trial', name: 'Start free trial' }, + { id: 'save-now', name: 'Save now' }, { id: 'get-started', name: 'Get started' }, { id: 'choose-a-plan', name: 'Choose a plan' }, { id: 'learn-more', name: 'Learn more' }, diff --git a/test/blocks/ost/textOption.test.js b/test/blocks/ost/textOption.test.js index 9254a74b21..c1de3a4bd3 100644 --- a/test/blocks/ost/textOption.test.js +++ b/test/blocks/ost/textOption.test.js @@ -12,6 +12,7 @@ describe('test ctaTextOption', () => { const EXPECTED_TEXTS = [{ id: 'buy-now', name: 'Buy now' }, { id: 'free-trial', name: 'Free trial' }, { id: 'start-free-trial', name: 'Start free trial' }, + { id: 'save-now', name: 'Save now' }, { id: 'get-started', name: 'Get started' }, { id: 'choose-a-plan', name: 'Choose a plan' }, { id: 'learn-more', name: 'Learn more' },