Skip to content

Commit dd46843

Browse files
ci(cypress): replace "remove group" with "delete group"
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
1 parent 081dbc5 commit dd46843

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cypress/e2e/settings/users_groups.cy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ describe('Settings: Delete an empty group', { testIsolation: false }, () => {
139139
})
140140

141141
it('can delete the group', () => {
142-
// The "Remove group" action in the actions menu is shown and clicked
143-
cy.get('.action-item__popper button').contains('Remove group').should('exist').click({ force: true })
142+
// The "Delete group" action in the actions menu is shown and clicked
143+
cy.get('.action-item__popper button').contains('Delete group').should('exist').click({ force: true })
144144
// And confirmation dialog accepted
145145
cy.get('.modal-container button').contains('Confirm').click({ force: true })
146146

@@ -190,8 +190,8 @@ describe('Settings: Delete a non empty group', () => {
190190
.find('button.action-item__menutoggle')
191191
.click({ force: true })
192192

193-
// The "Remove group" action in the actions menu is shown and clicked
194-
cy.get('.action-item__popper button').contains('Remove group').should('exist').click({ force: true })
193+
// The "Delete group" action in the actions menu is shown and clicked
194+
cy.get('.action-item__popper button').contains('Delete group').should('exist').click({ force: true })
195195
// And confirmation dialog accepted
196196
cy.get('.modal-container button').contains('Confirm').click({ force: true })
197197

0 commit comments

Comments
 (0)