Teatime do |config|

# root dir of all requireable lib files
config.lib_dir      = 'lib'

# pattern to determine relevant lib files
config.lib_files    = '**/*.js'

# root dir of all the test files
config.test_dir     = 'test/javascripts'

# test helpers will be included in the
# provided order
config.test_helpers = [ 'test_helper.js' ]

# pattern to determine relevant testfiles
config.test_files   = '**/*_test.js'

end

# vim: set ft=ruby: