diff options
Diffstat (limited to 'cypress/e2e/files.cy.ts')
-rw-r--r-- | cypress/e2e/files.cy.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cypress/e2e/files.cy.ts b/cypress/e2e/files.cy.ts index 9bdb05c8c72..490ddff2d0e 100644 --- a/cypress/e2e/files.cy.ts +++ b/cypress/e2e/files.cy.ts @@ -33,5 +33,7 @@ describe('Login with a new user and open the files app', function() { it('See the default file welcome.txt in the files list', function() { cy.visit('/apps/files') cy.get('[data-cy-files-list] [data-cy-files-list-row-name="welcome.txt"]').should('be.visible') + // eslint-disable-next-line cypress/no-unnecessary-waiting -- Wait for all to finish loading + cy.wait(500) }) }) |