Run specific RSpec test
11 March 2022 (Updated 11 March 2022)
Configure RSpec in a spec_helper.rb
file or some file that you include when running RSpec tests.
Now, you can prepend an f
to a describe
, context
or it
block to only run that example:
If you now run bundle exec rspec
, only the tests with the f
prefix should run.
The x
prefix can also be used to skip a particular example:
Tagged:
Ruby tooling
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment