We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c23969 commit 75c0d34Copy full SHA for 75c0d34
designer/client/cypress/e2e/nodeAdding.cy.ts
@@ -55,9 +55,11 @@ describe("Node adding", () => {
55
cy.wait(500);
56
cy.get("@searchInput").should("be.focused").type("sql");
57
cy.contains(/event generator/i).should("not.exist");
58
- cy.contains(/sql source/i).should("be.visible");
59
- cy.wait(500);
60
- cy.get("@searchInput").should("be.focused").type("{enter}");
+ cy.contains(/sql source/i)
+ .should("be.visible")
+ .click();
61
+ // cy.wait(500);
62
+ // cy.get("@searchInput").should("be.focused").type("{enter}");
63
64
cy.get("[title='add source node']").should("not.exist");
65
cy.get("[title='add new node']").should("be.visible").click({ force: true });
0 commit comments