I have several skipped specs.
Pending: (Failures listed here are expected and do not affect your suite's status)
1) ...
# Not yet implemented
# ./spec/requests/request_spec.rb:22
How to suppress the output of pending specs?
You can add the following config option to filter out all pending specs from the run:
RSpec.configure do |config|
config.filter_run_excluding skip: true
end
Also, here is a more elaborate suggestion to suppress the output
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With