This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Prem Sichanugrist
sikac.hu
did:plc:3tzumo4pqanp2ymkmlojgz35
I've been trying to debug a flaky spec that only fails like 5% of the time and couldn't really use `rspec --bisect` directly as it would `exit(1)` when the suit passes.
Solution:
untilpass() { until "$@"; do :; done }
then `untilpass rspec --bisect spec/...`
#ruby #rspec
2024-11-20T06:01:45.272Z