Skip to content

Commit

Permalink
fix: Connector type frm (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 authored Mar 5, 2024
1 parent df476f6 commit 3bb3706
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/processors/processores-paypal_test.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe("Processors Create Module", () => {
.find(".justify-center")
.click({ force: true });
cy.get("[data-testid=paymentprocessors]").click({ force: true });
const targetValue = "PayPal Test";
const targetValue = "paypal_test";
cy.get("table")
.find("td")
.each(($td) => {
Expand Down
1 change: 1 addition & 0 deletions cypress/e2e/quick-start/prod-quick-start.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ describe("Prod quick start", () => {
cy.get('input[name="connector_account_details.key1"]').type(
"adyen_test_cypress_account_id",
);
cy.get('input[name="metadata.endpoint_prefix"]').type("https://adyne.in");
cy.get('input[name="connector_webhook_details.merchant_secret"]').type(
"adyen_test_cypress_source_verification",
);
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Connectors/ConnectorTableUtils.res
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ let connectorStatusStyle = connectorStatus =>

let getCell = (connector: connectorPayload, colType): Table.cell => {
switch colType {
| Name => Text(connector.connector_name->ConnectorUtils.getDisplayNameForConnector)
| Name => Text(connector.connector_name)
| TestMode => Text(connector.test_mode ? "True" : "False")
| Disabled =>
Label({
Expand Down

0 comments on commit 3bb3706

Please sign in to comment.