Skip to content

Commit

Permalink
Merge branch 'master' into returnUsedPreAggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon authored Feb 6, 2025
2 parents c064e63 + 364d181 commit 2d1c3fe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/cubejs-testing/cypress/e2e/rollup-designer.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,14 @@ context("Playground: Rollup Designer", () => {
cy.getByTestId("prism-code").should("contain.text", "main: ");
cy.getByTestId("rd-input-every").clear().type("3");
cy.getByTestId("rd-select-every-granularity")
// This crazy chain of commands is needed to avoid crashing
.find("input")
.type("Day{enter}", { force: true });
.focus({ force: true })
.wait(500)
.click({ force: true })
.wait(500)
.type("Day{enter}", { force: true })
.wait(500);
cy.getByTestId("prism-code").should("contain.text", "every: `3 day`");
cy.getByTestId("rd-add-btn")
.should("be.visible")
Expand Down

0 comments on commit 2d1c3fe

Please sign in to comment.