From c6411bc4a619f480a95ef556d3c5f348414a26c4 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Wed, 31 May 2023 11:09:25 +0530 Subject: [PATCH] mgr/dashboard: fix test_dashboard_e2e.sh failure The qa e2e is failing because the script is not adapted with cypress 10. Fixes: https://tracker.ceph.com/issues/61519 Signed-off-by: Nizamudeen A (cherry picked from commit 7c5d92ad489637473d60e83fe064e2a2474fd192) --- qa/workunits/cephadm/test_dashboard_e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/cephadm/test_dashboard_e2e.sh b/qa/workunits/cephadm/test_dashboard_e2e.sh index e2e5dbf2ff278..28e1b097a0e66 100755 --- a/qa/workunits/cephadm/test_dashboard_e2e.sh +++ b/qa/workunits/cephadm/test_dashboard_e2e.sh @@ -58,7 +58,7 @@ EOF cypress_run () { local specs="$1" local timeout="$2" - local override_config="ignoreTestFiles=*.po.ts,retries=0,testFiles=${specs}" + local override_config="excludeSpecPattern=*.po.ts,retries=0,specPattern=${specs}" if [ x"$timeout" != "x" ]; then override_config="${override_config},defaultCommandTimeout=${timeout}"