We were seeing a log message when running specs locally ``` [Coveralls] Set up the SimpleCov formatter. [Coveralls] Using SimpleCov's 'rails' settings. ``` As Coveralls is mainly used in Travis CI, we do not need to load it in every spec run
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
ENV['RAILS_ENV'] ||= 'test'
|
|
if ENV['TRAVIS']
|
|
require 'coveralls'
|
|
Coveralls.wear!('rails')
|
|
end
|
|
require File.expand_path('../../config/environment', __FILE__)
|
|
abort("The Rails environment is running in production mode!") if Rails.env.production?
|
|
|
|
require 'rspec/rails'
|
|
require 'spec_helper'
|
|
require 'capybara/rails'
|
|
require 'capybara/rspec'
|
|
require 'capybara/poltergeist'
|
|
|
|
I18n.default_locale = :en
|
|
|
|
include Warden::Test::Helpers
|
|
Warden.test_mode!
|
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
|
|
RSpec.configure do |config|
|
|
config.infer_spec_type_from_file_location!
|
|
config.after do
|
|
Warden.test_reset!
|
|
end
|
|
end
|
|
|
|
Capybara.register_driver :poltergeist do |app|
|
|
Capybara::Poltergeist::Driver.new(app,
|
|
timeout: 1.minute,
|
|
inspector: true, # allows remote debugging by executing page.driver.debug
|
|
phantomjs_logger: File.open(File::NULL, "w"), # don't print console.log calls in console
|
|
phantomjs_options: ['--load-images=no', '--disk-cache=false'],
|
|
extensions: [File.expand_path("../support/phantomjs_ext/disable_js_fx.js", __FILE__)] # disable js effects
|
|
)
|
|
end
|
|
|
|
Capybara.javascript_driver = :poltergeist
|
|
|
|
Capybara.exact = true
|
|
|
|
OmniAuth.config.test_mode = true
|