Sha256: ed8b040deda91bd120c3446adc655ed10e052a9d4d9feae08474d06b6f1f53a7
Contents?: true
Size: 1.78 KB
Versions: 4
Compression:
Stored size: 1.78 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 # rubocop:disable LeadingCommentSpace Teaspoon.setup do |config| # Driver / Server config.driver = 'phantomjs' # available: phantomjs, selenium #config.server = nil # defaults to Rack::Server # Behaviors #config.server_timeout = 20 # timeout for starting the server # defaults to any open port unless specified #config.server_port = nil #config.fail_fast = true # abort after the first failing suite # Output # available: dot, tap, tap_y, swayze_or_oprah config.formatters = 'dot' # suppress logs coming from console[log/error/debug] #config.suppress_log = false #config.color = true # Coverage (requires istanbul -- https://github.com/gotwarlost/istanbul) #config.coverage = true #config.coverage_reports = 'text,html,cobertura' #config.coverage_output_dir = 'coverage' #config.statements_coverage_threshold = 50 #config.functions_coverage_threshold = 50 #config.branches_coverage_threshold = 50 #config.lines_coverage_threshold = 50 end # rubocop:enable LeadingCommentSpace
Version data entries
4 entries across 4 versions & 1 rubygems