From bc53343f559883e6b95cd02f840b9e3c05d5778e Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Tue, 16 Mar 2021 16:07:31 +0100 Subject: [PATCH] Add cypress frontend test config --- client/cypress.frontend.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 client/cypress.frontend.json diff --git a/client/cypress.frontend.json b/client/cypress.frontend.json new file mode 100644 index 00000000..c762d73b --- /dev/null +++ b/client/cypress.frontend.json @@ -0,0 +1,11 @@ +{ + "baseUrl": "http://localhost:8080", + "videoUploadOnPasses": false, + "reporter": "junit", + "reporterOptions": { + "mochaFile": "cypress/test-reports/frontend/cypress-results-[hash].xml", + "toConsole": true + }, + "integrationFolder": "cypress/integration/frontend", + "$schema": "https://on.cypress.io/cypress.schema.json" +}