Skip to content

Instantly share code, notes, and snippets.

@willawill
Created June 4, 2014 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willawill/067569a53714f6c7c1bd to your computer and use it in GitHub Desktop.
Save willawill/067569a53714f6c7c1bd to your computer and use it in GitHub Desktop.
karma.conf.coffee
module.exports = (config) ->
config.set({
# base path, that will be used to resolve files and exclude
basePath: '../'
frameworks: ['jasmine', 'mocha', 'chai'],
files: [
{pattern: 'app/**/*.js', included: true, served: true, watched: false}
{pattern: 'tests/**/*.js', included: true, served: true, watched: false}
],
# list of files to exclude
exclude: [
],
client: {
mocha: {
ui: 'bdd'
}
},
# use dots reporter, as travis terminal does not support escaping sequences
# possible values: 'dots', 'progress'
# CLI --reporters progress
reporters: ['progress'],
# web server port
# CLI --port 9876
port: 9876,
# enable / disable colors in the output (reporters and logs)
# CLI --colors --no-colors
colors: true,
# level of logging
# possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN ||
# config.LOG_INFO || config.LOG_DEBUG
# CLI --log-level debug
logLevel: config.LOG_INFO,
# enable / disable watching file and executing tests whenever any file changes
# CLI --auto-watch --no-auto-watch
autoWatch: true,
# If browser does not capture in given timeout [ms], kill it
# CLI --capture-timeout 5000
captureTimeout: 20000,
# Auto run tests on start (when browsers are captured) and exit
# CLI --single-run --no-single-run
singleRun: false,
# report which specs are slower than 500ms
# CLI --report-slower-than 500
reportSlowerThan: 500,
plugins: [
'karma-mocha',
'karma-chai',
'karma-phantomjs-launcher',
'karma-chrome-launcher',
'karma-jasmine',
'karma-firefox-launcher'
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment