From f51a8f8f8cd25528e3a93c104f10474d15584012 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Fri, 21 Nov 2025 11:13:54 +0100 Subject: [PATCH] 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 --- cypress/e2e/settings/users-group-admin.cy.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/settings/users-group-admin.cy.ts b/cypress/e2e/settings/users-group-admin.cy.ts index 3e9a561edc4b4..932e699d0dc18 100644 --- a/cypress/e2e/settings/users-group-admin.cy.ts +++ b/cypress/e2e/settings/users-group-admin.cy.ts @@ -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}'`)