Sha256: 5cc6c7ff1dab0a909f23a8ac12c9d084cb91d41f5befeece9ada03ef7a160e73
Contents?: true
Size: 604 Bytes
Versions: 9
Compression:
Stored size: 604 Bytes
Contents
# frozen_string_literal: true # A basic spec_helper to be included as the starting point for extensions # # Can be required from an extension's spec/spec_helper.rb # # require 'solidus_dev_support/rspec/spec_helper' # RSpec.configure do |config| config.filter_run focus: true config.run_all_when_everything_filtered = true config.mock_with :rspec config.color = true config.fail_fast = ENV.fetch('FAIL_FAST', false) config.order = 'random' config.raise_errors_for_deprecations! config.example_status_persistence_file_path = "./spec/examples.txt" Kernel.srand config.seed end
Version data entries
9 entries across 9 versions & 1 rubygems