Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 6aff82b

Browse files
committed
chore: fix failing E2E test
1 parent 85cabd7 commit 6aff82b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cypress/e2e/example30.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ describe('Example 30 Composite Editor Modal', () => {
105105
});
106106

107107
it('should not be able to change the "Finish" dates on first 2 rows', () => {
108-
cy.get(`[style="top: ${GRID_ROW_HEIGHT * 1}px;"] > .slick-cell:nth(8)`).should('contain', '').click(); // this date should also always be initially empty
108+
cy.get(`[style="top: ${GRID_ROW_HEIGHT * 1}px;"] > .slick-cell:nth(8)`).should('contain', '').click({ force: true }); // this date should also always be initially empty
109109
cy.get(`.flatpickr-day.today:visible`).should('not.exist');
110110

111-
cy.get(`[style="top: ${GRID_ROW_HEIGHT * 0}px;"] > .slick-cell:nth(8)`).should('contain', '').click(); // this date should also always be initially empty
111+
cy.get(`[style="top: ${GRID_ROW_HEIGHT * 0}px;"] > .slick-cell:nth(8)`).should('contain', '').click({ force: true }); // this date should also always be initially empty
112112
cy.get(`.flatpickr-day.today:visible`).should('not.exist');
113113
});
114114

0 commit comments

Comments
 (0)