]> source.dussan.org Git - nextcloud-server.git/commitdiff
Increase wait time
authorLouis Chemineau <louis@chmn.me>
Wed, 22 Mar 2023 19:05:46 +0000 (20:05 +0100)
committerLouis Chemineau <louis@chmn.me>
Wed, 5 Apr 2023 09:51:45 +0000 (11:51 +0200)
Signed-off-by: Louis Chemineau <louis@chmn.me>
cypress/e2e/files_versions/filesVersionsUtils.ts

index ce37b88a08675a6f645ea952d287a57a632a4ee2..cc3fc04b2e1129444503c252ccf976b03b502d30 100644 (file)
@@ -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)
 }