Skip to content

Commit

Permalink
chore(cypress): run formatter and address lints
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperswitch-bot[bot] committed Jan 3, 2025
1 parent 55741f7 commit 145dd3c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {
it("api-key-create-call-test", () => {
cy.apiKeyCreateTest(fixtures.apiKeyCreateBody, globalState);
});

it("customer-create-call-test", () => {
cy.createCustomerCallTest(fixtures.customerCreateBody, globalState);
});
Expand Down Expand Up @@ -658,7 +658,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {
// creating payment with currency as USD and no billing email
// billing.email is mandatory for novalnet
it("create-payment-call-test", () => {
let data = getConnectorDetails("stripe")["pm_list"]["PaymentIntent"];
const data = getConnectorDetails("stripe")["pm_list"]["PaymentIntent"];
const newData = {
...data,
Request: data.RequestCurrencyUSD,
Expand All @@ -676,7 +676,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {

// payment method list should only have credit with stripe
it("payment-method-list-call-test", () => {
let data =
const data =
getConnectorDetails("stripe")["pm_list"]["PmListResponse"][
"PmListWithCreditOneConnector"
];
Expand Down Expand Up @@ -712,7 +712,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {
it("api-key-create-call-test", () => {
cy.apiKeyCreateTest(fixtures.apiKeyCreateBody, globalState);
});

it("customer-create-call-test", () => {
cy.createCustomerCallTest(fixtures.customerCreateBody, globalState);
});
Expand Down Expand Up @@ -744,7 +744,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {
// creating payment with currency as EUR and billing email
// billing.email is mandatory for novalnet
it("create-payment-call-test", () => {
let data = getConnectorDetails("stripe")["pm_list"]["PaymentIntent"];
const data = getConnectorDetails("stripe")["pm_list"]["PaymentIntent"];
const newData = {
...data,
Request: data.RequestCurrencyEUR,
Expand All @@ -762,7 +762,7 @@ describe("Payment Method list using Constraint Graph flow tests", () => {

// payment method list should only have credit with novalnet
it("payment-method-list-call-test", () => {
let data =
const data =
getConnectorDetails("stripe")["pm_list"]["PmListResponse"][
"PmListWithCreditOneConnector"
];
Expand Down

0 comments on commit 145dd3c

Please sign in to comment.