Merge pull request #56567 from nextcloud/carl/disable-users-group-admin-test

ci: Disable always failing tests in users-group-admin.cy.ts
This commit is contained in:
Andy Scherzinger 2025-11-24 17:36:14 +01:00 committed by GitHub
commit eb8108e407
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -87,7 +87,8 @@ describe('Settings: Create accounts as a group admin', function() {
.contains(john.userId).should('exist')
})
it('Can create a new user when member of multiple groups', () => {
// Skiping as this crash the webengine in the CI
it.skip('Can create a new user when member of multiple groups', () => {
const group2 = randomString(7)
cy.runOccCommand(`group:add '${group2}'`)
cy.runOccCommand(`group:adduser '${group2}' '${subadmin.userId}'`)
@ -152,7 +153,7 @@ describe('Settings: Create accounts as a group admin', function() {
.contains(john.userId).should('exist')
})
it('Only sees groups they are subadmin of', () => {
it.skip('Only sees groups they are subadmin of', () => {
const group2 = randomString(7)
cy.runOccCommand(`group:add '${group2}'`)
cy.runOccCommand(`group:adduser '${group2}' '${subadmin.userId}'`)