Skip to content

Commit

Permalink
MWPW-166076 Update a.com Business plans page CTAs to point to CME-1 M…
Browse files Browse the repository at this point in the history
…7 Business plans page
  • Loading branch information
Bozo Jovicic committed Feb 21, 2025
1 parent 840ca52 commit e88890a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/utils/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,8 @@ describe('Utils', () => {

it('Converts business plans link to M7 link for IMS user', async () => {
const buIms = window.adobeIMS;
window.adobeIMS = { getProfile: () => {return { countryCode: 'CH' }}, isSignedInUser: () => true };
const profile = { countryCode: 'CH' };
window.adobeIMS = { getProfile: () => profile, isSignedInUser: () => true };
const m7Link = await utils.generateM7Link();
expect(m7Link).to.equal('https://commerce.adobe.com/store/segmentation?cli=adobe_com&co=CH&pa=ccsn_direct_individual&cs=t&af=uc_segmentation_hide_tabs');
window.adobeIMS = buIms;
Expand Down

0 comments on commit e88890a

Please sign in to comment.