diff options
author | Louis Chemineau <louis@chmn.me> | 2023-03-22 13:54:29 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2023-03-30 10:09:13 +0200 |
commit | 49134c65954e7d2e6aa22960a16bd71f5d79403f (patch) | |
tree | 5be4e834c8b0ab4cb591f94c4c692423cba71a9f /cypress/e2e | |
parent | 2eda49e28d4ae80079a25ceb8566b9b6df9daeba (diff) | |
download | nextcloud-server-49134c65954e7d2e6aa22960a16bd71f5d79403f.tar.gz nextcloud-server-49134c65954e7d2e6aa22960a16bd71f5d79403f.zip |
Increase wait to ensure versions are created
In files_versions cypress tests, we wait for 1000ms between each versions uploads to make sure that the server properly create a version. Under 1s the serve does not create a version.
This commit increases the wait time as it might help to ensure that the time span is enough between two uploads.
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'cypress/e2e')
-rw-r--r-- | cypress/e2e/files_versions/filesVersionsUtils.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/files_versions/filesVersionsUtils.ts b/cypress/e2e/files_versions/filesVersionsUtils.ts index 1aa7ebde316..e2267538471 100644 --- a/cypress/e2e/files_versions/filesVersionsUtils.ts +++ b/cypress/e2e/files_versions/filesVersionsUtils.ts @@ -24,9 +24,9 @@ import path from "path" export function uploadThreeVersions(user) { cy.uploadContent(user, new Blob(['v1'], { type: 'text/plain' }), 'text/plain', '/test.txt') - cy.wait(1000) + cy.wait(1500) cy.uploadContent(user, new Blob(['v2'], { type: 'text/plain' }), 'text/plain', '/test.txt') - cy.wait(1000) + cy.wait(1500) cy.uploadContent(user, new Blob(['v3'], { type: 'text/plain' }), 'text/plain', '/test.txt') cy.login(user) } |