1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/ruby/a-shorthand-for-rerunning-failed-tests-with-rspec.md

9 lines
475 B
Markdown

# A Shorthand For Rerunning Failed Tests With RSpec
After running a group of tests -- whether it is the entire suite or just the
tests in a file -- you may find that you have a few failures. Often the goal is
to focus in on these failures and get back to a green test suite. Rather than
rerunning everything each time you make a change, you can instruct `rspec` to
just rerun the tests that failed. This can be done with the `--only-failures`
flag or `--on` flag for short.