From: Louis Chemineau Date: Wed, 22 Mar 2023 19:05:46 +0000 (+0100) Subject: Increase wait time X-Git-Tag: v26.0.1rc1~20^2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1903bd47d3b6915217517b2589664714c588cf7f;p=nextcloud-server.git Increase wait time Signed-off-by: Louis Chemineau --- diff --git a/cypress/e2e/files_versions/filesVersionsUtils.ts b/cypress/e2e/files_versions/filesVersionsUtils.ts index ce37b88a086..cc3fc04b2e1 100644 --- a/cypress/e2e/files_versions/filesVersionsUtils.ts +++ b/cypress/e2e/files_versions/filesVersionsUtils.ts @@ -27,9 +27,9 @@ export function uploadThreeVersions(user) { // within less than one second of each other. // eslint-disable-next-line cypress/no-unnecessary-waiting cy.uploadContent(user, new Blob(['v1'], { type: 'text/plain' }), 'text/plain', '/test.txt') - .wait(1500) + .wait(10000) .uploadContent(user, new Blob(['v2'], { type: 'text/plain' }), 'text/plain', '/test.txt') - .wait(1500) + .wait(10000) .uploadContent(user, new Blob(['v3'], { type: 'text/plain' }), 'text/plain', '/test.txt') cy.login(user) }