Skip to content

Commit

Permalink
fix(tests): fix failing cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kreafox committed Sep 26, 2023
1 parent cccf2c5 commit 6f729e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/02-flexGroup.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('Flex Group Variation Tests', () => {
cy.get('.content.active.common .button.group')
.contains('Section')
.should('be.visible')
.click();
.click({ force: true });

// Save
cy.get('#toolbar-save').click();
Expand All @@ -46,7 +46,7 @@ describe('Flex Group Variation Tests', () => {
cy.get('.content.active.common .button.group')
.contains('Section (Group)')
.should('be.visible')
.click();
.click({ force: true });

cy.contains('Section').click();

Expand Down

0 comments on commit 6f729e4

Please sign in to comment.