We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0556a commit 4e2e410Copy full SHA for 4e2e410
Guardfile
@@ -1,6 +1,6 @@
1
require 'active_support/inflector'
2
3
-guard :rspec, cmd: 'bin/rspec' do
+guard :rspec, cmd: 'bin/rspec -f doc' do
4
# spec/*_helper.rb -> all specs
5
watch(%r{spec/.*_helper.rb}) { 'spec' }
6
# spec/support/*.rb -> all specs
spec/spec_helper.rb
@@ -13,7 +13,7 @@
13
14
# Allow filtering by "focus" tag
15
if ENV['CI']
16
- config.before(focus: true) { fail "Bailing due to focused tests!" }
+ config.before(focus: true) { raise 'Bailing due to focused tests!' }
17
else
18
config.filter_run :focus
19
end
0 commit comments