Sha256: 9d39dfbecbe5884b0277d69b088df8824c27ab70f47166490bf4a1cc41566187
Contents?: true
Size: 749 Bytes
Versions: 27
Compression:
Stored size: 749 Bytes
Contents
SPEC_ROOT = File.expand_path(__dir__) $LOAD_PATH << SPEC_ROOT require 'codeclimate-test-reporter' CodeClimate::TestReporter.start RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.include_chain_clauses_in_custom_matcher_descriptions = true end config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end config.filter_run :focus config.run_all_when_everything_filtered = true config.disable_monkey_patching! # config.warnings = true if config.files_to_run.one? config.default_formatter = 'doc' end config.profile_examples = 3 config.order = :random Kernel.srand config.seed #this allows you to use `--seed` to deterministically reproduce failures end
Version data entries
27 entries across 27 versions & 1 rubygems