Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/assets/js/easy-pie-chart/karma.conf.coffee
1293 views
1
# Karma configuration
2
# http://karma-runner.github.io/0.10/config/configuration-file.html
3
module.exports = (config) ->
4
config.set
5
6
# base path, that will be used to resolve files and exclude
7
basePath: ''
8
9
# testing framework to use (jasmine/mocha/qunit/...)
10
frameworks: ['jasmine']
11
12
# list of files / patterns to load in the browser
13
files: [
14
'test/polyfills/bind.js'
15
'bower_components/jquery/dist/jquery.js'
16
'bower_components/angular/angular.js'
17
'bower_components/angular-mocks/angular-mocks.js'
18
'src/renderer/canvas.js'
19
'src/easypiechart.js'
20
'src/jquery.plugin.js'
21
'src/angular.directive.js'
22
'test/**/*.js'
23
]
24
25
# list of files / patterns to exclude
26
exclude: []
27
28
# web server port
29
port: 8080
30
31
# level of logging
32
# possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
33
logLevel: config.LOG_INFO
34
35
# enable / disable watching file and executing tests whenever any file changes
36
autoWatch: true
37
38
# reporters
39
reporters: ['progress', 'dots']
40
41
# Start these browsers, currently available:
42
# - Chrome
43
# - ChromeCanary
44
# - Firefox
45
# - Opera
46
# - Safari (only Mac)
47
# - PhantomJS
48
# - IE (only Windows)
49
browsers: ['Chrome']
50
51
# Continuous Integration mode
52
# if true, it capture browsers, run tests and exit
53
singleRun: false
54
55