Skip to content

Commit

Permalink
Fix test (improved fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
kravets-levko committed Jan 20, 2020
1 parent f8e7334 commit 7e3f9cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/cypress/integration/query/parameter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ describe("Parameter", () => {
cy.contains("li.ant-select-dropdown-menu-item", "value2").click();

cy.getByTestId("ParameterApplyButton").click();
cy.getByTestId("ExecuteButton").should("be.disabled"); // ensure that query is being executed
// ensure that query is being executed
cy.get('[data-test="ExecuteButton"]:disabled').should("exist");

cy.getByTestId("TableVisualization").should("contain", "value2");
});
Expand Down

0 comments on commit 7e3f9cf

Please sign in to comment.