diff --git a/config/development.toml b/config/development.toml index f07c5f4dda3a..70974d4e7da6 100644 --- a/config/development.toml +++ b/config/development.toml @@ -56,7 +56,6 @@ max_feed_count = 200 [server] # HTTP Request body limit. Defaults to 32kB request_body_limit = 32768 -port=8082 [secrets] admin_api_key = "test_admin" diff --git a/cypress-tests/cypress/e2e/PaymentUtils/Jpmorgan.js b/cypress-tests/cypress/e2e/PaymentUtils/Jpmorgan.js index ca7feefde51b..6344b8beeb35 100644 --- a/cypress-tests/cypress/e2e/PaymentUtils/Jpmorgan.js +++ b/cypress-tests/cypress/e2e/PaymentUtils/Jpmorgan.js @@ -68,24 +68,6 @@ export const connectorDetails = { Request: { currency: "USD", payment_method: "card", - billing: { - address: { - line1: "1467", - line2: "CA", - line3: "CA", - city: "Musterhausen", - state: "California", - zip: "12345", - country: "US", - first_name: "John", - last_name: "Doe", - }, - email: "test@jpmorgan.us", - phone: { - number: "9123456789", - country_code: "+91", - }, - }, payment_method_data: { card: successfulNo3DSCardDetails, }, @@ -207,6 +189,9 @@ export const connectorDetails = { }, },*/ Refund: { + Configs: { + TRIGGER_SKIP: true, + }, Request: { payment_method: "card", payment_method_data: { @@ -217,7 +202,6 @@ export const connectorDetails = { Response: { status: 501, body: { - // status: "succeeded", type: "invalid_request", message: "Refunds is not implemented", code: "IR_00" @@ -225,6 +209,9 @@ export const connectorDetails = { }, }, manualPaymentRefund: { + Configs: { + TRIGGER_SKIP: true, + }, Request: { payment_method: "card", payment_method_data: { @@ -242,6 +229,9 @@ export const connectorDetails = { }, }, manualPaymentPartialRefund: { + Configs: { + TRIGGER_SKIP: true, + }, Request: { payment_method: "card", payment_method_data: { @@ -259,6 +249,9 @@ export const connectorDetails = { }, }, PartialRefund: { + Configs: { + TRIGGER_SKIP: true, + }, Request: { payment_method: "card", payment_method_data: { @@ -292,17 +285,13 @@ export const connectorDetails = { }, }*/ SyncRefund: { - Request: { - payment_method: "card", - payment_method_data: { - card: successfulNo3DSCardDetails, - }, - customer_acceptance: null, + Configs: { + TRIGGER_SKIP: true, }, Response: { status: 404, body: { - type: "undefined", + type: "invalid_request", message: "Refund does not exist in our records.", code: "HE_02" },