1 // Teaspoon includes some support files, but you can use anything from your own support path too.
2 // require support/expect
3 // require support/sinon
4 //= require support/chai
5 //= require support/chai-jq-0.0.7
6 // require support/your-support-file
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
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
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:
20 // Teaspoon.defer = true
21 // setTimeout(Teaspoon.execute, 1000)
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
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.
32 // For more information: http://github.com/modeset/teaspoon
35 // If you're using Chai, you'll probably want to initialize your preferred assertion style. You can read more about Chai
36 // at: http://chaijs.com/guide/styles
38 window.assert = chai.assert;
39 window.expect = chai.expect;
40 window.should = chai.should();