]> git.openstreetmap.org Git - rails.git/blob - test/teaspoon_env.rb
Merge remote-tracking branch 'upstream/pull/5923'
[rails.git] / test / teaspoon_env.rb
1 # Monkey patch pending new release with
2 # https://github.com/jejacks0n/teaspoon/pull/604
3 Rack::Server = Rackup::Server
4
5 Teaspoon.configure do |config|
6   # Determines where the Teaspoon routes will be mounted. Changing this to "/jasmine" would allow you to browse to
7   # `http://localhost:3000/jasmine` to run your tests.
8   config.mount_at = "/teaspoon"
9
10   # Specifies the root where Teaspoon will look for files. If you're testing an engine using a dummy application it can
11   # be useful to set this to your engines root (e.g. `Teaspoon::Engine.root`).
12   # Note: Defaults to `Rails.root` if nil.
13   config.root = nil
14
15   # Paths that will be appended to the Rails assets paths
16   # Note: Relative to `config.root`.
17   config.asset_paths = ["test/javascripts", "test/javascripts/stylesheets"]
18
19   # Fixtures are rendered through a controller, which allows using HAML, RABL/JBuilder, etc. Files in these paths will
20   # be rendered as fixtures.
21   config.fixture_paths = ["test/javascripts/fixtures"]
22
23   # SUITES
24   #
25   # You can modify the default suite configuration and create new suites here. Suites are isolated from one another.
26   #
27   # When defining a suite you can provide a name and a block. If the name is left blank, :default is assumed. You can
28   # omit various directives and the ones defined in the default suite will be used.
29   #
30   # To run a specific suite
31   # - in the browser: http://localhost/teaspoon/[suite_name]
32   # - with the rake task: rake teaspoon suite=[suite_name]
33   # - with the cli: teaspoon --suite=[suite_name]
34   config.suite do |suite|
35     # Specify the framework you would like to use. This allows you to select versions, and will do some basic setup for
36     # you -- which you can override with the directives below. This should be specified first, as it can override other
37     # directives.
38     # Note: If no version is specified, the latest is assumed.
39     #
40     # Versions: 1.10.0, 1.17.1, 1.18.2, 1.19.0, 2.0.1, 2.1.0, 2.2.4, 2.2.5, 2.3.3
41     suite.use_framework :mocha, "2.3.3"
42
43     # Specify a file matcher as a regular expression and all matching files will be loaded when the suite is run. These
44     # files need to be within an asset path. You can add asset paths using the `config.asset_paths`.
45     suite.matcher = "{test/javascripts,app/assets}/**/*_test.{js,js.coffee,coffee,es6,js.es6}"
46
47     # Load additional JS files, but requiring them in your spec helper is the preferred way to do this.
48     # suite.javascripts = []
49
50     # You can include your own stylesheets if you want to change how Teaspoon looks.
51     # Note: Spec related CSS can and should be loaded using fixtures.
52     # suite.stylesheets = ["teaspoon"]
53
54     # This suites spec helper, which can require additional support files. This file is loaded before any of your test
55     # files are loaded.
56     suite.helper = "test_helper"
57
58     # Partial to be rendered in the head tag of the runner. You can use the provided ones or define your own by creating
59     # a `_boot.html.erb` in your fixtures path, and adjust the config to `"/boot"` for instance.
60     #
61     # Available: boot, boot_require_js
62     suite.boot_partial = "boot"
63
64     # Partial to be rendered in the body tag of the runner. You can define your own to create a custom body structure.
65     suite.body_partial = "body"
66
67     # Hooks allow you to use `Teaspoon.hook("fixtures")` before, after, or during your spec run. This will make a
68     # synchronous Ajax request to the server that will call all of the blocks you've defined for that hook name.
69     # suite.hook :fixtures, &proc{}
70
71     # Determine whether specs loaded into the test harness should be embedded as individual script tags or concatenated
72     # into a single file. Similar to Rails' asset `debug: true` and `config.assets.debug = true` options. By default,
73     # Teaspoon expands all assets to provide more valuable stack traces that reference individual source files.
74     # suite.expand_assets = true
75
76     # Non-.js file extensions Teaspoon should consider JavaScript files
77     # suite.js_extensions = [/(\.js)?.coffee/, /(\.js)?.es6/, ".es6.js"]
78   end
79
80   # Example suite. Since we're just filtering to files already within the root test/javascripts, these files will also
81   # be run in the default suite -- but can be focused into a more specific suite.
82   # config.suite :targeted do |suite|
83   #  suite.matcher = "spec/javascripts/targeted/*_spec.{js,js.coffee,coffee}"
84   # end
85
86   # CONSOLE RUNNER SPECIFIC
87   #
88   # These configuration directives are applicable only when running via the rake task or command line interface. These
89   # directives can be overridden using the command line interface arguments or with ENV variables when using the rake
90   # task.
91   #
92   # Command Line Interface:
93   # teaspoon --driver=phantomjs --server-port=31337 --fail-fast=true --format=junit --suite=my_suite /spec/file_spec.js
94   #
95   # Rake:
96   # teaspoon DRIVER=phantomjs SERVER_PORT=31337 FAIL_FAST=true FORMATTERS=junit suite=my_suite
97
98   # Specify which headless driver to use. Supports PhantomJS, Selenium Webdriver and BrowserStack Webdriver.
99   #
100   # Available: :phantomjs, :selenium, :browserstack
101   # PhantomJS: https://github.com/jejacks0n/teaspoon/wiki/Using-PhantomJS
102   # Selenium Webdriver: https://github.com/jejacks0n/teaspoon/wiki/Using-Selenium-WebDriver
103   # BrowserStack Webdriver: https://github.com/jejacks0n/teaspoon/wiki/Using-BrowserStack-WebDriver
104   # Capybara Webkit: https://github.com/jejacks0n/teaspoon/wiki/Using-Capybara-Webkit
105   require "selenium-webdriver"
106   config.driver = :selenium
107   firefox_options = Selenium::WebDriver::Firefox::Options.new
108   firefox_options.args = ["-headless"] if Settings.system_test_headless
109   firefox_options.binary = Settings.system_test_firefox_binary if Settings.system_test_firefox_binary
110   config.driver_options = {
111     :client_driver => :firefox,
112     :selenium_options => {
113       :options => firefox_options
114     }
115   }
116
117   # Specify additional options for the driver.
118   #
119   # PhantomJS: https://github.com/jejacks0n/teaspoon/wiki/Using-PhantomJS
120   # Selenium Webdriver: https://github.com/jejacks0n/teaspoon/wiki/Using-Selenium-WebDriver
121   # BrowserStack Webdriver: https://github.com/jejacks0n/teaspoon/wiki/Using-BrowserStack-WebDriver
122   # Capybara Webkit: https://github.com/jejacks0n/teaspoon/wiki/Using-Capybara-Webkit
123   # config.driver_options = nil
124
125   # Specify the timeout for the driver. Specs are expected to complete within this time frame or the run will be
126   # considered a failure. This is to avoid issues that can arise where tests stall.
127   # config.driver_timeout = 180
128
129   # Specify a server to use with Rack (e.g. thin, mongrel). If nil is provided Rack::Server is used.
130   # config.server = nil
131
132   # Specify a host to run on a specific host, otherwise Teaspoon will use 127.0.0.1.
133   # config.server_host = nil
134
135   # Specify a port to run on a specific port, otherwise Teaspoon will use a random available port.
136   # config.server_port = nil
137
138   # Timeout for starting the server in seconds. If your server is slow to start you may have to bump this, or you may
139   # want to lower this if you know it shouldn't take long to start.
140   # config.server_timeout = 20
141
142   # Force Teaspoon to fail immediately after a failing suite. Can be useful to make Teaspoon fail early if you have
143   # several suites, but in environments like CI this may not be desirable.
144   # config.fail_fast = true
145
146   # Specify the formatters to use when outputting the results.
147   # Note: Output files can be specified by using `"junit>/path/to/output.xml"`.
148   #
149   # Available: :dot, :clean, :documentation, :json, :junit, :pride, :rspec_html, :snowday, :swayze_or_oprah, :tap, :tap_y, :teamcity
150   # config.formatters = [:dot]
151
152   # Specify if you want color output from the formatters.
153   # config.color = true
154
155   # Teaspoon pipes all console[log/debug/error] to $stdout. This is useful to catch places where you've forgotten to
156   # remove them, but in verbose applications this may not be desirable.
157   # config.suppress_log = false
158
159   # COVERAGE REPORTS / THRESHOLD ASSERTIONS
160   #
161   # Coverage reports requires Istanbul (https://github.com/gotwarlost/istanbul) to add instrumentation to your code and
162   # display coverage statistics.
163   #
164   # Coverage configurations are similar to suites. You can define several, and use different ones under different
165   # conditions.
166   #
167   # To run with a specific coverage configuration
168   # - with the rake task: rake teaspoon USE_COVERAGE=[coverage_name]
169   # - with the cli: teaspoon --coverage=[coverage_name]
170
171   # Specify that you always want a coverage configuration to be used. Otherwise, specify that you want coverage
172   # on the CLI.
173   # Set this to "true" or the name of your coverage config.
174   # config.use_coverage = nil
175
176   # You can have multiple coverage configs by passing a name to config.coverage.
177   # e.g. config.coverage :ci do |coverage|
178   # The default coverage config name is :default.
179   config.coverage do |coverage|
180     # Which coverage reports Istanbul should generate. Correlates directly to what Istanbul supports.
181     #
182     # Available: text-summary, text, html, lcov, lcovonly, cobertura, teamcity
183     # coverage.reports = ["text-summary", "html"]
184
185     # The path that the coverage should be written to - when there's an artifact to write to disk.
186     # Note: Relative to `config.root`.
187     # coverage.output_path = "coverage"
188
189     # Assets to be ignored when generating coverage reports. Accepts an array of filenames or regular expressions. The
190     # default excludes assets from vendor, gems and support libraries.
191     # coverage.ignore = [%r{/lib/ruby/gems/}, %r{/vendor/assets/}, %r{/support/}, %r{/(.+)_helper.}]
192
193     # Various thresholds requirements can be defined, and those thresholds will be checked at the end of a run. If any
194     # aren't met the run will fail with a message. Thresholds can be defined as a percentage (0-100), or nil.
195     # coverage.statements = nil
196     # coverage.functions = nil
197     # coverage.branches = nil
198     # coverage.lines = nil
199   end
200 end