From f781eb5b05c55d7ea6fb04fcbeb633de21ef236c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 4 Feb 2020 20:50:57 +0100 Subject: [PATCH] chore: move test results to a specific directory --- x-pack/legacy/plugins/apm/cypress/.gitignore | 2 +- x-pack/legacy/plugins/apm/cypress/cypress.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/legacy/plugins/apm/cypress/.gitignore b/x-pack/legacy/plugins/apm/cypress/.gitignore index 90c0285f4a0b4..10c769065fc28 100644 --- a/x-pack/legacy/plugins/apm/cypress/.gitignore +++ b/x-pack/legacy/plugins/apm/cypress/.gitignore @@ -1,4 +1,4 @@ cypress/ingest-data/events.json cypress/screenshots/* -**/*-e2e-tests.xml +cypress/test-results diff --git a/x-pack/legacy/plugins/apm/cypress/cypress.json b/x-pack/legacy/plugins/apm/cypress/cypress.json index 82cc9aa70664b..67378f05b2665 100644 --- a/x-pack/legacy/plugins/apm/cypress/cypress.json +++ b/x-pack/legacy/plugins/apm/cypress/cypress.json @@ -12,7 +12,7 @@ "useRelativeSnapshots": true, "reporter": "junit", "reporterOptions": { - "mochaFile": "[hash]-e2e-tests.xml", + "mochaFile": "./cypress/test-results/[hash]-e2e-tests.xml", "toConsole": false }, "testFiles": "**/*.{feature,features}"