mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
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:
parent
6bb46fde3e
commit
f51a8f8f8c
1 changed files with 3 additions and 2 deletions
|
|
@ -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}'`)
|
||||
|
|
|
|||
Loading…
Reference in a new issue