Skip to content

Commit 23c9cda

Browse files
authored
fix(cubejs-testing): cypress - fix rollup tests (#8725)
1 parent 562f50a commit 23c9cda

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/cubejs-testing/cypress/integration/rollup-designer.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ context("Playground: Rollup Designer", () => {
1616

1717
cy.getByQa("QueryBuilder", { timeout: 30 * 1000 }).should("exist");
1818
cy.getByTestId("rd-btn").click();
19+
cy.wait(1000);
1920
cy.getByTestId("rd-modal").should("be.visible");
21+
cy.wait(1000);
2022
cy.getByTestId("rd-query-tab").should("exist");
2123

2224
cy.getByTestId("member-tag-Orders.Count").should("exist");
@@ -37,8 +39,9 @@ context("Playground: Rollup Designer", () => {
3739

3840
cy.getByQa("QueryBuilder", { timeout: 30 * 1000 }).should("exist");
3941
cy.getByTestId("rd-btn").click();
42+
cy.wait(1000);
4043
cy.getByTestId("rd-modal").should("be.visible");
41-
44+
cy.wait(1000);
4245
cy.getByTestId("rd-query-tab").should("not.exist");
4346
});
4447

0 commit comments

Comments
 (0)