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