diff options
author | Louis Chemineau <louis@chmn.me> | 2025-03-06 11:30:05 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2025-03-06 11:30:05 +0100 |
commit | d579ec295c33abc36596aec63f4470dd01fb0446 (patch) | |
tree | 423cafc1a7796f5b964a6eaaa986d4bdce696470 /cypress/e2e | |
parent | 4c92c91980c18f0e2d0394825e322a466c2654bc (diff) | |
download | nextcloud-server-artonge/test/remove_only_calls.tar.gz nextcloud-server-artonge/test/remove_only_calls.zip |
test: Remove `.only(` callsartonge/test/remove_only_calls
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress/e2e')
-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 0f5f9c26538..7e372476d7b 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') |