ci: Disable always failing tests in users-group-admin.cy.ts

They keep failing with the Electron Renderer process crashing for weeks
now, so disable them.

Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
This commit is contained in:
Carl Schwan 2025-11-21 11:13:54 +01:00
parent 6bb46fde3e
commit f51a8f8f8c
No known key found for this signature in database
GPG key ID: 02325448204E452A

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}'`)