7 Oct
2024
7 Oct
'24
10:18 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38049 --- Comment #19 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to David Nind from comment #18)
4. Not sure how to run a cypress test repeatedly without doing it manually - happy to run more times if someone could share how to do that.
I am doing this (run 300x and stop on error): % for i in {1..300}; do echo "loop $i"; yarn cypress run --spec t/cypress/integration/Admin/RecordSources_spec.ts ; if [ "$?" = "1" ]; then break; fi; done -- You are receiving this mail because: You are watching all bug changes.