Merge remote-tracking branch 'origin/main' into feature/create_from_text

This commit is contained in:
burnettk 2022-12-30 22:41:53 -05:00
commit 41aa64832d
1 changed files with 4 additions and 1 deletions

View File

@ -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