cypress_test/cypress.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 6988c3306bd09f92c6603a22d679c9ff63c2abdb Author: Tamás Zolnai <[email protected]> AuthorDate: Thu Apr 9 11:31:10 2020 +0200 Commit: Tamás Zolnai <[email protected]> CommitDate: Thu Apr 9 12:31:04 2020 +0200 cypress: try to fix random "Uncaught SyntaxError" failures. I don't know why it happens, but I found a bug report about it with a solution: https://github.com/cypress-io/cypress/issues/4889 So let's check whether changing this setting solves this issue. Change-Id: If1f1162d9c7cfb4f68f816285644dc88b35f872b Reviewed-on: https://gerrit.libreoffice.org/c/online/+/91956 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tamás Zolnai <[email protected]> diff --git a/cypress_test/cypress.json b/cypress_test/cypress.json index 1b6d041f9..5f4c1c407 100644 --- a/cypress_test/cypress.json +++ b/cypress_test/cypress.json @@ -4,5 +4,6 @@ "pluginsFile" : "plugins/index.js", "defaultCommandTimeout" : 6000, "supportFile" : "support/index.js", - "ignoreTestFiles" : "*helper.js" + "ignoreTestFiles" : "*helper.js", + "modifyObstructiveCode": false } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
