Skip to content

Commit f51a8f8

Browse files
committed
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 <[email protected]>
1 parent 6bb46fd commit f51a8f8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cypress/e2e/settings/users-group-admin.cy.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ describe('Settings: Create accounts as a group admin', function() {
8787
.contains(john.userId).should('exist')
8888
})
8989

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

155-
it('Only sees groups they are subadmin of', () => {
156+
it.skip('Only sees groups they are subadmin of', () => {
156157
const group2 = randomString(7)
157158
cy.runOccCommand(`group:add '${group2}'`)
158159
cy.runOccCommand(`group:adduser '${group2}' '${subadmin.userId}'`)

0 commit comments

Comments
 (0)