Skip to content

Commit

Permalink
fix(cubejs-testing): cypress - fix rollup tests (#8725)
Browse files Browse the repository at this point in the history
  • Loading branch information
tenphi committed Sep 18, 2024
1 parent 562f50a commit 23c9cda
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ context("Playground: Rollup Designer", () => {

cy.getByQa("QueryBuilder", { timeout: 30 * 1000 }).should("exist");
cy.getByTestId("rd-btn").click();
cy.wait(1000);
cy.getByTestId("rd-modal").should("be.visible");
cy.wait(1000);
cy.getByTestId("rd-query-tab").should("exist");

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

cy.getByQa("QueryBuilder", { timeout: 30 * 1000 }).should("exist");
cy.getByTestId("rd-btn").click();
cy.wait(1000);
cy.getByTestId("rd-modal").should("be.visible");

cy.wait(1000);
cy.getByTestId("rd-query-tab").should("not.exist");
});

Expand Down

0 comments on commit 23c9cda

Please sign in to comment.