diff options
author | Louis Chemineau <louis@chmn.me> | 2025-03-06 11:30:05 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-03-06 11:12:14 +0000 |
commit | db9db0beecd5452e1a66ac90f8b3daf2077d0aff (patch) | |
tree | 2210bfc93e477c1b8e14ed70e783a6d0873355cf | |
parent | 8d049caf170442384bf4a8ec1c751c2fa32c9423 (diff) | |
download | nextcloud-server-backport/51302/stable30.tar.gz nextcloud-server-backport/51302/stable30.zip |
test: Remove `.only(` callsbackport/51302/stable30
Signed-off-by: Louis Chemineau <louis@chmn.me>
-rw-r--r-- | cypress/e2e/settings/users_groups.cy.ts | 2 | ||||
-rw-r--r-- | cypress/e2e/systemtags/files-inline-action.cy.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/settings/users_groups.cy.ts b/cypress/e2e/settings/users_groups.cy.ts index f7a8d7c6d03..523f23d5a94 100644 --- a/cypress/e2e/settings/users_groups.cy.ts +++ b/cypress/e2e/settings/users_groups.cy.ts @@ -207,7 +207,7 @@ describe('Settings: Delete a non empty group', () => { }) }) -describe.only('Settings: Sort groups in the UI', () => { +describe('Settings: Sort groups in the UI', () => { before(() => { // Clear state cy.runOccCommand('group:list --output json').then((output) => { diff --git a/cypress/e2e/systemtags/files-inline-action.cy.ts b/cypress/e2e/systemtags/files-inline-action.cy.ts index f439a64ee7f..05197b83c62 100644 --- a/cypress/e2e/systemtags/files-inline-action.cy.ts +++ b/cypress/e2e/systemtags/files-inline-action.cy.ts @@ -92,7 +92,7 @@ describe('Systemtags: Files integration', { testIsolation: true }, () => { .should('contain.text', tag2) }) - it.only('See three assigned tags result in overflow entry', () => { + it('See three assigned tags result in overflow entry', () => { const tag1 = randomBytes(4).toString('base64') const tag2 = randomBytes(4).toString('base64') const tag3 = randomBytes(4).toString('base64') |