From 5107a8b5cf063cbb746cfdf8ce124c3d5f9923aa 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 --- bin/collect_cypress_stats | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/collect_cypress_stats b/bin/collect_cypress_stats index 3194347..150efc8 100755 --- a/bin/collect_cypress_stats +++ b/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