Sha256: 5db006af1cca23fad71333a948e4dd761dd2002611271e4b46f634270c2832ff

Contents?: true

Size: 1.12 KB

Versions: 8

Compression:

Stored size: 1.12 KB

Contents

require 'minitest/autorun'
require 'minitest/reporters'
Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

require 'active_support/core_ext/kernel/reporting'

Dir['test/support/**/*.rb'].each do |file|
  # strip ^test/ and .rb$
  file = file[5..-4]
  require_relative File.join('.', file)
end

GEM_PATH = File.expand_path('../', File.dirname(__FILE__))

#= Capybara
require 'capybara/cuprite'

browser_path = ENV['CHROMIUM_BIN'] || %w[
  /usr/bin/chromium-browser
  /snap/bin/chromium
  /Applications/Chromium.app/Contents/MacOS/Chromium
  /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
].find { |path| File.executable?(path) }

Capybara.register_driver :cuprite do |app|
  options = {
      window_size: [1280, 1024],
      timeout: 15,
      process_timeout: 15
  }
  options[:browser_path] = browser_path if browser_path
  Capybara::Cuprite::Driver.new(app, options)
end

Capybara.configure do |config|
  config.server = :webrick
  config.app_host = 'http://localhost:7000'
  config.default_driver = :cuprite
  config.javascript_driver = :cuprite
  config.server_port = 7000
  config.default_max_wait_time = 10
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
bootstrap-propshaft-5.3.2.2 test/test_helper.rb
bootstrap-propshaft-5.3.2.1 test/test_helper.rb
bootstrap-propshaft-5.3.2 test/test_helper.rb
bootstrap-5.3.2 test/test_helper.rb
bootstrap-5.3.1 test/test_helper.rb
bootstrap-5.3.0 test/test_helper.rb
bootstrap-5.3.0.alpha3 test/test_helper.rb
bootstrap-5.2.3 test/test_helper.rb