Sha256: eafb0a273729166955796498caf8ff3b0aee3e24423baaffb91b6ad2ebe5cd09
Contents?: true
Size: 673 Bytes
Versions: 5
Compression:
Stored size: 673 Bytes
Contents
require 'bundler/setup' require 'rspec' require 'webmock' require 'vcr' require 'awesome_print' require 'elastic/enterprise-search' RSpec.configure do |config| # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = "random" VCR.configure do |c| c.cassette_library_dir = 'spec/fixtures/vcr' c.hook_into :webmock end config.before :each do Elastic::EnterpriseSearch.endpoint = ENV["ENDPOINT"] end config.after :each do Elastic::EnterpriseSearch.reset end end
Version data entries
5 entries across 5 versions & 1 rubygems