Sha256: ab4e808252ea7d468764b461ce2a03c6ebf50376335720fc4362a9bab8981a53

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

# This file allows you to override various Teaspoon 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.
#
# Set RAILS_ROOT and load the environment.
ENV["RAILS_ROOT"] = File.expand_path("../../", __FILE__)
require File.expand_path("../../config/environment", __FILE__)

# Provide default configuration.
#
# You can override various configuration directives defined here by using arguments with the teaspoon command.
#
# teaspoon --driver=selenium --suppress-log
# rake teaspoon DRIVER=selenium SUPPRESS_LOG=false
Teaspoon.setup do |config|
  # Driver
  #config.driver         = "phantomjs" # 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

2 entries across 2 versions & 1 rubygems

Version Path
guard-teaspoon-0.0.4 spec/dummy/spec/teaspoon_env.rb
guard-teaspoon-0.0.3 spec/dummy/spec/teaspoon_env.rb