From d11a1f1dfd28a9ab45f29eaaf8ec15de6afcd8ce Mon Sep 17 00:00:00 2001 From: Nicolas Chaulet Date: Fri, 6 Dec 2024 08:18:56 -0500 Subject: [PATCH] fix cypress tests --- .buildkite/scripts/steps/functional/fleet_cypress.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/scripts/steps/functional/fleet_cypress.sh b/.buildkite/scripts/steps/functional/fleet_cypress.sh index e050b73a91c3..35241f3ee61d 100755 --- a/.buildkite/scripts/steps/functional/fleet_cypress.sh +++ b/.buildkite/scripts/steps/functional/fleet_cypress.sh @@ -9,7 +9,7 @@ export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION} echo "--- Fleet Cypress tests (Chrome)" -cd x-pack/plugins/fleet +cd x-pack/platform/plugins/shared/fleet set +e yarn cypress:run:reporter; status=$?; yarn cypress_space_awareness:run:reporter; space_status=$?; yarn junit:merge || :; [ "$status" -ne 0 ] && exit $status || [ "$space_status" -ne 0 ] && exit $space_status || exit 0