diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-03-25 13:06:14 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-03-25 13:06:14 +0100 |
commit | 7f132f72edcb17418d09c2660180becff87715ee (patch) | |
tree | 61f9e62e7adb3ec1607bfc10737fcb708bfd3f02 | |
parent | 2d813f15ab45434b86825f343845244aa56c1bb2 (diff) | |
download | nextcloud-server-7f132f72edcb17418d09c2660180becff87715ee.tar.gz nextcloud-server-7f132f72edcb17418d09c2660180becff87715ee.zip |
fix(tests): Files are sorted by Name by default, no need to click it
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r-- | cypress/e2e/files/files-sorting.cy.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cypress/e2e/files/files-sorting.cy.ts b/cypress/e2e/files/files-sorting.cy.ts index b3ae598114c..9e726bf96e1 100644 --- a/cypress/e2e/files/files-sorting.cy.ts +++ b/cypress/e2e/files/files-sorting.cy.ts @@ -166,7 +166,6 @@ describe('Files: Sorting the file list', { testIsolation: true }, () => { cy.visit('/apps/files') cy.log('By name - ascending') - cy.get('th').contains('button', 'Name').click() cy.contains('th', 'Name').should('have.attr', 'aria-sort', 'ascending') cy.get('[data-cy-files-list-row]').each(($row, index) => { |