From 4c4e6cef2152e693d99af6eeeb0c87fefda074b0 Mon Sep 17 00:00:00 2001 From: Mike Moore Date: Fri, 10 Nov 2017 15:42:48 -0700 Subject: [PATCH] Add focus config to RSpec This allows us to focus on specs by changing it to fit. --- spec/spec_helper.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index aece035..50ced66 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -64,6 +64,8 @@ RSpec.configure do |config| include RSpec::LoggingHelper config.capture_log_messages config.include WebMock::API + config.filter_run focus: true + config.run_all_when_everything_filtered = true end module TestHelpers