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 7cf2287 commit 2f25b94Copy full SHA for 2f25b94
packages/cubejs-testing/cypress/e2e/rollup-designer.js
@@ -62,8 +62,14 @@ context("Playground: Rollup Designer", () => {
62
cy.getByTestId("prism-code").should("contain.text", "main: ");
63
cy.getByTestId("rd-input-every").clear().type("3");
64
cy.getByTestId("rd-select-every-granularity")
65
+ // This crazy chain of commands is needed to avoid crashing
66
.find("input")
- .type("Day{enter}", { force: true });
67
+ .focus({ force: true })
68
+ .wait(500)
69
+ .click({ force: true })
70
71
+ .type("Day{enter}", { force: true })
72
+ .wait(500);
73
cy.getByTestId("prism-code").should("contain.text", "every: `3 day`");
74
cy.getByTestId("rd-add-btn")
75
.should("be.visible")
0 commit comments