Skip to content

Commit 88c32b4

Browse files
fix: format
1 parent fe7e4eb commit 88c32b4

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

cypress-tests/cypress/e2e/bank-of-america-card-flow-e2e-test.cy.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ describe("Bank of America Card Payment flow test", () => {
1717
changeObjectKeyValue(
1818
createPaymentBody,
1919
"profile_id",
20-
connectorProfileIdMapping.get(connectorEnum.BANK_OF_AMERICA)
20+
connectorProfileIdMapping.get(connectorEnum.BANK_OF_AMERICA),
2121
);
2222
});
2323

2424
it("should complete the card payment successfully (No 3DS)", () => {
25-
changeObjectKeyValue(createPaymentBody, "authentication_type", "no_three_ds");
25+
changeObjectKeyValue(
26+
createPaymentBody,
27+
"authentication_type",
28+
"no_three_ds",
29+
);
2630
changeObjectKeyValue(createPaymentBody, "customer_id", "new_customer_id");
2731
cy.createPaymentIntent(secretKey, createPaymentBody).then(() => {
2832
cy.getGlobalState("clientSecret").then((clientSecret) => {
@@ -45,7 +49,11 @@ describe("Bank of America Card Payment flow test", () => {
4549
});
4650

4751
it("should fail with an invalid card number", () => {
48-
changeObjectKeyValue(createPaymentBody, "authentication_type", "no_three_ds");
52+
changeObjectKeyValue(
53+
createPaymentBody,
54+
"authentication_type",
55+
"no_three_ds",
56+
);
4957
cy.createPaymentIntent(secretKey, createPaymentBody).then(() => {
5058
cy.getGlobalState("clientSecret").then((clientSecret) => {
5159
cy.visit(getClientURL(clientSecret, publishableKey));

0 commit comments

Comments
 (0)