Sha256: 441c8f711fcb659e4f6469a99569e80a05bf46bca144634b8ed66b4eb5c6f9e7
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
# This file allows you to override various Teabag configuration directives when running from the command line. It is not # required from within the Rails environment, so overriding directives that have been defined within the initializer # is not possible. # # You can override various configuration directives defined here by using arguments with the teabag command. # # teabag --driver=selenium --fail_fast=false # rake teabag FAIL_FAST=false # # Set RAILS_ROOT and load the environment. ENV["RAILS_ROOT"] = File.expand_path("../dummy", __FILE__) require File.expand_path("../dummy/config/environment", __FILE__) Teabag.setup do |config| # Driver #config.driver = "selenium" # available: phantomjs, selenium #config.phantomjs_bin = nil # Behaviors #config.server_timeout = 20 # timeout for starting the server #config.fail_fast = true # abort after the first failing suite # Output #config.formatters = "dot" # available: dot, tap_y, swayze_or_oprah #config.suppress_log = false # suppress logs coming from console[log/error/debug] #config.color = true end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
teabag-0.5.4 | spec/teabag_env.rb |
teabag-0.5.3 | spec/teabag_env.rb |
teabag-0.5.2 | spec/teabag_env.rb |
teabag-0.5.1 | spec/teabag_env.rb |
teabag-0.5.0 | spec/teabag_env.rb |