cypress_test/cypress.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 1061d109079710434ccab84368bcdb7a10e697c9 Author: Tamás Zolnai <[email protected]> AuthorDate: Fri Jul 17 10:45:09 2020 +0200 Commit: Tamás Zolnai <[email protected]> CommitDate: Fri Jul 17 11:16:30 2020 +0200 cypress: use the *_spec.js pattern to filter test files. We use the same pattern in the make file for parallel build, let's us the same here in cypress config. It also allows us to use different name for helper files. Change-Id: I6718cd5221d4c35a259c61a70d7685327a16400c Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98940 Tested-by: Jenkins 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 2510a6094..30ae76ce1 100644 --- a/cypress_test/cypress.json +++ b/cypress_test/cypress.json @@ -3,7 +3,7 @@ "video" : false, "pluginsFile" : "plugins/index.js", "defaultCommandTimeout" : 6000, - "ignoreTestFiles" : "*helper.js", + "testFiles" : "**/*_spec.js", "modifyObstructiveCode": false, "fixturesFolder" : "data" } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
