From 11030e99bd2a947bf9c531908930c7107bd5e734 Mon Sep 17 00:00:00 2001 From: burnettk Date: Fri, 30 Dec 2022 17:00:24 -0500 Subject: [PATCH] allow specifying number of iterations --- spiffworkflow-frontend/bin/collect_cypress_stats | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spiffworkflow-frontend/bin/collect_cypress_stats b/spiffworkflow-frontend/bin/collect_cypress_stats index 319434752..150efc800 100755 --- a/spiffworkflow-frontend/bin/collect_cypress_stats +++ b/spiffworkflow-frontend/bin/collect_cypress_stats @@ -10,6 +10,8 @@ set -o errtrace -o errexit -o nounset -o pipefail # see also: npx cypress run --env grep="can filter",grepFilterSpecs=true # https://github.com/cypress-io/cypress/tree/develop/npm/grep#pre-filter-specs-grepfilterspecs +iterations="${1:-10}" + test_case_matches="$(rg '^ it\(')" stats_file="/var/tmp/cypress_stats.txt" @@ -37,7 +39,8 @@ function run_all_test_cases() { # clear the stats file echo > "$stats_file" -for global_stat_index in {1..100}; do +for ((global_stat_index=1;global_stat_index<=$iterations;global_stat_index++)); do +# for global_stat_index in {1..$iterations}; do run_all_test_cases "$global_stat_index" done