Path: blob/master/web-gui/buildyourownbotnet/assets/js/easy-pie-chart/karma.conf.coffee
1293 views
# Karma configuration1# http://karma-runner.github.io/0.10/config/configuration-file.html2module.exports = (config) ->3config.set45# base path, that will be used to resolve files and exclude6basePath: ''78# testing framework to use (jasmine/mocha/qunit/...)9frameworks: ['jasmine']1011# list of files / patterns to load in the browser12files: [13'test/polyfills/bind.js'14'bower_components/jquery/dist/jquery.js'15'bower_components/angular/angular.js'16'bower_components/angular-mocks/angular-mocks.js'17'src/renderer/canvas.js'18'src/easypiechart.js'19'src/jquery.plugin.js'20'src/angular.directive.js'21'test/**/*.js'22]2324# list of files / patterns to exclude25exclude: []2627# web server port28port: 80802930# level of logging31# possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG32logLevel: config.LOG_INFO3334# enable / disable watching file and executing tests whenever any file changes35autoWatch: true3637# reporters38reporters: ['progress', 'dots']3940# Start these browsers, currently available:41# - Chrome42# - ChromeCanary43# - Firefox44# - Opera45# - Safari (only Mac)46# - PhantomJS47# - IE (only Windows)48browsers: ['Chrome']4950# Continuous Integration mode51# if true, it capture browsers, run tests and exit52singleRun: false535455