File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1- --color
21--format documentation
2+ --color
33--require spec_helper
4+ --order random
Original file line number Diff line number Diff line change 1313require "active_support/all"
1414
1515RSpec . configure do |config |
16- config . run_all_when_everything_filtered = true
17- config . filter_run :focus
16+ # Enable flags like --only-failures and --next-failure
17+ config . example_status_persistence_file_path = ".rspec_status"
1818
19- # Run specs in random order to surface order dependencies. If you find an
20- # order dependency and want to debug it, you can fix the order by providing
21- # the seed, which is printed after each run.
22- # --seed 1234
23- config . order = "random"
19+ # Disable RSpec exposing methods globally on `Module` and `main`
20+ config . disable_monkey_patching!
21+
22+ config . expect_with :rspec do |c |
23+ c . syntax = :expect
24+ end
2425end
You can’t perform that action at this time.
0 commit comments