Skip to content

Commit

Permalink
fix: strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pixincreate committed Jan 6, 2025
1 parent a0a3c2b commit 960f4ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe("In Memory Cache configs", () => {

it("Update Configs", () => {
cy.setConfigs(globalState, key, newValue, "UPDATE");
// cy.setConfigs(globalState, key, value, "FETCH");
cy.setConfigs(globalState, key, value, "FETCH");
});

it("delete configs", () => {
Expand Down
14 changes: 7 additions & 7 deletions cypress-tests/cypress/e2e/spec/Routing/00003-Retries.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -158,7 +158,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -210,7 +210,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -310,7 +310,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -363,7 +363,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -416,7 +416,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down Expand Up @@ -488,7 +488,7 @@ describe("Auto Retries & Step Up 3DS", () => {
cy.setConfigs(
globalState,
`max_auto_retries_enabled_${merchantId}`,
maxAutoRetries,
`${maxAutoRetries}`,
"UPDATE"
);
});
Expand Down

0 comments on commit 960f4ef

Please sign in to comment.