diff --git a/cypress-tests/cypress/support/utils.ts b/cypress-tests/cypress/support/utils.ts index 4d6ca4c0..496d5560 100644 --- a/cypress-tests/cypress/support/utils.ts +++ b/cypress-tests/cypress/support/utils.ts @@ -6,6 +6,16 @@ export const getClientURL = (clientSecret, publishableKey) => { return `${CLIENT_BASE_URL}?isCypressTestMode=true&clientSecret=${clientSecret}&publishableKey=${publishableKey}`; } +export const enum connectorEnum{ + TRUSTPAY, + ADYEN, + STRIPE +} +export const connectorProfileIdMapping = new Map([ + [connectorEnum.TRUSTPAY, "pro_eP323T9e4ApKpilWBfPA"], + [connectorEnum.ADYEN, "pro_Kvqzu8WqBZsT1OjHlCj4"], + [connectorEnum.STRIPE, "pro_5fVcCxU8MFTYozgtf0P8"], +]); export const createPaymentBody = { currency: "USD",