Skip to content

Commit

Permalink
Some more changes to support new cypress version
Browse files Browse the repository at this point in the history
Signed-off-by: Kshitij Tandon <[email protected]>
  • Loading branch information
tandonks committed Jan 30, 2025
1 parent e464bda commit 6ea6917
Show file tree
Hide file tree
Showing 17 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,7 @@ describe("Rollups", () => {
cy.wait("@getRollup").wait(2000);

// Click Disable button
cy.get(`[data-test-subj="disableButton"]`)
.should("not.be.disabled")
.click({ force: true });
cy.get(`[data-test-subj="disableButton"]`).should("not.be.disabled").click({ force: true });

cy.wait("@stopRollup");
cy.wait("@getRollup");
Expand All @@ -270,9 +268,7 @@ describe("Rollups", () => {
cy.wait(2000);

// Click Enable button
cy.get(`[data-test-subj="enableButton"]`)
.should("not.be.disabled")
.click({ force: true });
cy.get(`[data-test-subj="enableButton"]`).should("not.be.disabled").click({ force: true });

// Confirm we get toaster saying rollup job is enabled
cy.contains(`${ROLLUP_ID} is enabled`);
Expand Down

0 comments on commit 6ea6917

Please sign in to comment.