summaryrefslogtreecommitdiffstats
path: root/cypress/e2e
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2023-03-22 20:05:46 +0100
committerLouis Chemineau <louis@chmn.me>2023-04-05 11:51:45 +0200
commit1903bd47d3b6915217517b2589664714c588cf7f (patch)
tree1224fee9f6c56e33dc578138433b6af90fc8a5f6 /cypress/e2e
parent28b3cb795f3b83caed41cda87bd00927b494e4c5 (diff)
downloadnextcloud-server-1903bd47d3b6915217517b2589664714c588cf7f.tar.gz
nextcloud-server-1903bd47d3b6915217517b2589664714c588cf7f.zip
Increase wait time
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress/e2e')
-rw-r--r--cypress/e2e/files_versions/filesVersionsUtils.ts4
1 files changed, 2 insertions, 2 deletions
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)
}