master
 1# Teaspoon includes some support files, but you can use anything from your own support path too.
 2# require support/jasmine-jquery-1.7.0
 3# require support/jasmine-jquery-2.0.0
 4# require support/jasmine-jquery-2.1.0
 5# require support/sinon
 6# require support/your-support-file
 7#
 8# PhantomJS (Teaspoons default driver) doesn't have support for Function.prototype.bind, which has caused confusion.
 9# Use this polyfill to avoid the confusion.
10#= require support/phantomjs-shims
11#
12# You can require your own javascript files here. By default this will include everything in application, however you
13# may get better load performance if you require the specific files that are being used in the spec that tests them.
14#= require application
15#
16# Deferring execution
17# If you're using CommonJS, RequireJS or some other asynchronous library you can defer execution. Call
18# Teaspoon.execute() after everything has been loaded. Simple example of a timeout:
19#
20# Teaspoon.defer = true
21# setTimeout(Teaspoon.execute, 1000)
22#
23# Matching files
24# By default Teaspoon will look for files that match _spec.{js,js.coffee,.coffee}. Add a filename_spec.js file in your
25# spec path and it'll be included in the default suite automatically. If you want to customize suites, check out the
26# configuration in teaspoon_env.rb
27#
28# Manifest
29# If you'd rather require your spec files manually (to control order for instance) you can disable the suite matcher in
30# the configuration and use this file as a manifest.
31#
32# For more information: http://github.com/modeset/teaspoon