cypress_test/cypress.json | 3 ++- cypress_test/integration_tests/common/helper.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-)
New commits: commit b5fb0e87fb2b627770bde2c971027b4b98e5b318 Author: Tamás Zolnai <[email protected]> AuthorDate: Wed Mar 11 13:01:59 2020 +0100 Commit: Tamás Zolnai <[email protected]> CommitDate: Wed Mar 11 13:48:31 2020 +0100 cypress: increase default timeout. Change-Id: Iba6a4ee5c4af6479f9cbe2e2d6ed585dd906b593 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/90325 Tested-by: Tamás Zolnai <[email protected]> Reviewed-by: Tamás Zolnai <[email protected]> diff --git a/cypress_test/cypress.json b/cypress_test/cypress.json index c4e304f82..2ba462732 100644 --- a/cypress_test/cypress.json +++ b/cypress_test/cypress.json @@ -1,5 +1,6 @@ { "integrationFolder" : "integration_tests", "video" : false, - "pluginsFile" : "plugins/index.js" + "pluginsFile" : "plugins/index.js", + "defaultCommandTimeout" : 6000 } diff --git a/cypress_test/integration_tests/common/helper.js b/cypress_test/integration_tests/common/helper.js index fddafdf22..06291e690 100644 --- a/cypress_test/integration_tests/common/helper.js +++ b/cypress_test/integration_tests/common/helper.js @@ -61,6 +61,7 @@ function afterAll() { .should('exist'); cy.get('#doclist tr') .should('not.exist', {timeout : 10000}); + cy.wait(200); } function detectLOCoreVersion() { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
