Skip to content

Commit b015947

Browse files
committed
fix: update test
Signed-off-by: mykh-hailo <kristianderonta0205@gmail.com>
1 parent 8d83180 commit b015947

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

cypress/e2e/settings/apps.cy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,21 +156,21 @@ describe('Settings: App management', { testIsolation: true }, () => {
156156
.contains('tr', 'Dashboard', { timeout: 10000 })
157157
.click()
158158
// Then I enable "limit app to group"
159-
cy.get('[for="groups_enable_dashboard"]').click()
159+
cy.get('[for="groups_enable_dashboard"]').click({ force: true })
160160
// Then I select a group
161161
cy.get('#limitToGroups').click()
162162
cy.get('ul[role="listbox"]')
163163
.find('span')
164164
.contains('admin')
165-
.click()
165+
.click({ force: true })
166166

167167
handlePasswordConfirmation(admin.password)
168-
168+
169169
cy.get('span.name-parts__first')
170170
.contains('admin')
171171
.should('be.visible')
172172
// Then I disable the group limitation
173-
cy.get('button[title="Deselect admin"]').click()
173+
cy.get('button[title="Deselect admin"]').click({ force: true })
174174
})
175175

176176
/*

0 commit comments

Comments
 (0)